-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
building_materials.js
56 lines (49 loc) · 1 KB
/
building_materials.js
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
addIngredient("concrete",{
type:"thick_liquid",
color:"#888888",
keywords:"concrete",
adj:"concrete"
});
addIngredient("hardened_concrete",{
type:"bouillon_cube",
color:"#444444",
keywords:"concrete",
adj:"hardened"
});
addIngredient("metal",{
type:"bouillon_cube",
color:"#BBBBBB",
keywords:"metal,iron",
adj:"metallic"
});
addIngredient("brick",{
type:"chocolate",
color:"#FF866E",
keywords:"brick",
adj:"bricky ",
meltInto: null
});
addIngredient("hex",{
type:"decor",
color:"#0088FF",
keywords:"hex,developer",
adj:"hexagonical ",
});
addIngredient("liquid_death",{
type:"salsa",
color:"#FF0000",
keywords:"death,poison",
adj:"deadly ",
});
addIngredient("gas_death",{
type:"smoke",
color:"#FF0000",
keywords:"death,poison",
adj:"deadly ",
});
addIngredient("cubical_death",{
type:"bouillon_cube",
color:"#FF0000",
keywords:"death,poison",
adj:"deadly ",
});