TimberWoods / src /ReplicatedStorage /Shared /ExplorationConfig.lua
algorembrant's picture
Upload 88 files
0712d5f verified
-- src/ReplicatedStorage/Shared/ExplorationConfig.lua
local ExplorationConfig = {
Puzzles = {
WeightSwitch = {
RequiredWeight = 500,
ActiveTime = 0,
},
LightReceptor = {
RequiredIntensity = 0.8,
},
},
Biomes = {
Swamp = {
SinkingSpeed = 2,
DamagePerSecond = 5,
},
IcePeak = {
SlipFriction = 0.05,
FreezeDamage = 2,
},
Desert = {
HeatDamagePerSecond = 1,
StaminaDrainMult = 1.5,
},
Volcanic = {
LavaDamagePerSecond = 20,
SafeDistance = 10,
},
TropicalRainforest = {
VisibilityRange = 100,
PoisonChance = 0.1,
},
Tundra = {
FreezeDamage = 3,
SlowMult = 0.7,
},
},
}
return ExplorationConfig