-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelements.lua
More file actions
85 lines (84 loc) · 1.75 KB
/
elements.lua
File metadata and controls
85 lines (84 loc) · 1.75 KB
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
local elements = {
Water = {
color = {0, 0, 1},
recipe = {},
},
Fire = {
color = {1, 0, 0},
recipe = {},
},
Earth = {
color = {0.5, 0.25, 0},
recipe = {},
},
Air = {
color = {0.8, 0.8, 0.8},
recipe = {},
},
Mud = {
color = {0.4, 0.3, 0.2},
recipe = {"Earth", "Water"},
},
Steam = {
color = {0.8, 0.8, 1},
recipe = {"Fire", "Water"},
},
Glass = {
color = {0.9, 0.9, 1},
recipe = {"Earth", "Fire"},
},
Dust = {
color = {0.9, 0.8, 0.6},
recipe = {"Air", "Earth"},
},
Clay = {
color = {0.7, 0.5, 0.4},
recipe = {"Air", "Mud"},
},
Plant = {
color = {0.2, 0.7, 0.2},
recipe = {"Earth", "Rain"},
},
Brick = {
color = {0.8, 0.3, 0.2},
recipe = {"Fire", "Mud"},
},
Lens = {
color = {0.95, 0.95, 1},
recipe = {"Air", "Glass"},
},
Lightbulb = {
color = {1, 1, 0.7},
recipe = {"Fire", "Glass"},
},
Geyser = {
color = {0.7, 0.9, 1},
recipe = {"Earth", "Steam"},
},
Cloud = {
color = {0.9, 0.9, 1},
recipe = {"Air", "Steam"},
},
Rainbow = {
color = {1, 0.5, 1},
recipe = {"Fire", "Rain"},
},
Tree = {
color = {0.2, 0.5, 0.2},
recipe = {"Earth", "Plant"},
},
Charcoal = {
color = {0.2, 0.2, 0.2},
recipe = {"Tree", "Fire"},
},
Paper = {
color = {1, 1, 0.9},
recipe = {"Tree", "Water"},
},
Swamp = {
color = {0.3, 0.4, 0.2},
recipe = {"Plant", "Mud"},
},
-- Continue adding more elements as needed...
}
return elements