File size: 715 Bytes
0712d5f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
-- 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