-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
39 lines (38 loc) · 1.71 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
types = {}
types['tree'] = {}
types['tree'].name = 'tree'
types['tree'].tick_min = 12500
types['tree'].tick_max = 25000
types['tree'].surface = 1
types['tree'].selection_chance = 0.8
types['tree'].max_place_distance = 12
types['tree'].propagation_chance = {}
types['tree'].propagation_chance["grass"] = 0.9
types['tree'].propagation_chance["grass-medium"] = 0.9
types['tree'].propagation_chance["grass-dry"] = 0.7
types['tree'].propagation_chance["dirt"] = 0.5
types['tree'].propagation_chance["dirt-dark"] = 0.5
types['tree'].propagation_chance["sand"] = 0.1
types['tree'].propagation_chance["sand-dark"] = 0.1
types['tree'].propagation_chance["stone-path"] = 0.08
types['tree'].propagation_chance["concrete"] = 0.001
types['tree'].propagation_chance["hazard-concrete-left"] = 0.02
types['tree'].propagation_chance["hazard-concrete-right"] = 0.02
types['tree'].propagation_chance["out-of-map"] = 0
types['tree'].propagation_chance["deepwater"] = 0
types['tree'].propagation_chance["deepwater-green"] = 0
types['tree'].propagation_chance["water"] = 0
types['tree'].propagation_chance["water-green"] = 0
types['tree'].overrides = {}
types['tree'].overrides["dead-dry-hairy-tree"] = {}
types['tree'].overrides["dead-dry-hairy-tree"].disabled = true
types['tree'].overrides["dead-grey-trunk"] = {}
types['tree'].overrides["dead-grey-trunk"].disabled = true
types['tree'].overrides["dead-tree"] = {}
types['tree'].overrides["dead-tree"].disabled = true
types['tree'].overrides["dry-hairy-tree"] = {}
types['tree'].overrides["dry-hairy-tree"].disabled = true
types['tree'].overrides["dry-tree"] = {}
types['tree'].overrides["dry-tree"].disabled = true
types['tree'].overrides["green-coral"] = {}
types['tree'].overrides["green-coral"].disabled = true