This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
107 lines (99 loc) · 2.52 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
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
Config = {
Locale = "pt_br",
UseMetabolism = true, -- Experimental Function
-- Status amount rate drop
EveryTimeStatusDown = 3600, -- 3,6 seconds
HowAmountThirstWhileRunning = 3, -- Example drop 3 every 3,6 seconds -- Max value 1000
HowAmountHungerWhileRunning = 2,
HowAmountThirst = 2,
HowAmountHunger = 1,
HowAmountMetabolismWhileRunning = 4,
HowAmountMetabolism = 2,
FirstHungerStatus = 1000, -- 100%
FirstThirstStatus = 1000, -- 100%
OnRespawnHungerStatus = 1000,
OnRespawnThirstStatus = 1000,
FirstMetabolismStatus = 0,
ItemsToUse = {
{
Name = "consumable_coffee",
Thirst = 300,
Hunger = 0,
Metabolism = 0,
Stamina = 0,
InnerCoreHealth = 0,
OuterCoreHealth = 0,
InnerCoreHealthGold = 0.0,
OuterCoreHealthGold = 0.0,
InnerCoreStaminaGold = 0.0,
OuterCoreStaminaGold = 0.0,
PropName = "p_mugCoffee01x",
Animation = "drink"
},
{
Name = "consumable_kidneybeans_can",
Thirst = 300,
Hunger = 100,
Metabolism = 500,
Stamina = 100,
InnerCoreHealth = 10,
OuterCoreHealth = 5,
InnerCoreHealthGold = 0.0,
OuterCoreHealthGold = 0.0,
InnerCoreStaminaGold = 0.0,
OuterCoreStaminaGold = 0.0,
PropName = "s_canbeansused01x",
Animation = "eat"
},
{
Name = "consumable_salmon_can",
Thirst = 300,
Hunger = 100,
Metabolism = 300,
Stamina = 100,
InnerCoreHealth = 10,
OuterCoreHealth = 5,
InnerCoreHealthGold = 0.0,
OuterCoreHealthGold = 0.0,
InnerCoreStaminaGold = 0.0,
OuterCoreStaminaGold = 0.0,
PropName = "s_canbeansused01x",
Animation = "eat"
},
{
Name = "consumable_medicine",
Thirst = 100,
Hunger = 0,
Metabolism = 200,
Stamina = 0,
InnerCoreHealth = 60,
OuterCoreHealth = 40,
InnerCoreHealthGold = 500.0,
OuterCoreHealthGold = 1000.0,
InnerCoreStaminaGold = 0.0,
OuterCoreStaminaGold = 0.0,
PropName = "p_bottlemedicine01x",
Animation = "drink"
},
{
Name = "consumable_peach",
Thirst = 100,
Hunger = 150,
Metabolism = 100,
Stamina = 120,
InnerCoreHealth = 10,
OuterCoreHealth = 5,
InnerCoreHealthGold = 0.0,
OuterCoreHealthGold = 0.0,
InnerCoreStaminaGold = 0.0,
OuterCoreStaminaGold = 0.0,
PropName = "s_peach01x",
Animation = "eat"
}
}
}
Translations = {
['pt_br'] = {
['OnUseItem'] = "Você consumiu %s"
}
}