-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.lua
37 lines (35 loc) · 2.13 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
--------------------------------------------------------------------------------
----------------------------------- DevDokus -----------------------------------
--------------------------------------------------------------------------------
-- Temperature Settings
Temperature = {
Format = 'C', -- Set it to C or F
Max = 20, -- Max Temp before losing more vitals stats.
Min = -15, -- Min Temp before losing more vitals stats.
ColdDamage = { Water = 0.05, Food = 0.1 }, -- Amount of drain per second below min Temp
HotDamage = { Water = 0.25, Food = 0.01}, -- Amount of drain per second above max Temp
}
-- Food Settings
Food = {
DrainIdle = 0.01, -- Amount of drain when standing still
DrainRunning = 0.20, -- Amount of drain when running
DrainWalking = 0.03, -- Amount of drain when walking
LoseWhen = 10.0, -- Losing innercore health below this threshold
DamagePerSec = 1.0, -- Amount of damage on innercore health per second.
}
-- Water Settings
Water = {
DrainIdle = 0.02, -- Amount of drain when standing still
DrainRunning = 0.50, -- Amount of drain when running
DrainWalking = 0.05, -- Amount of drain when walking
LoseWhen = 10.0, -- Losing innercore health below this threshold
DamagePerSec = 1.0, -- Amount of damage on innercore health per second.
}
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- ATTENTION --
-- I am still busy with expanding this script and giving it more
-- functionality. Visit my Github regularly to see if there are new updates.
-- Thank you for using this script, I hope you enjoy :)
--------------------------------------------------------------------------------