]> git.localhorst.tv Git - blobs-assets.git/blob - data/resources
material attributes
[blobs-assets.git] / data / resources
1 air = {
2         label = "Air";
3         state = gas;
4         density = 1.225;
5         energy = 19000000.0;
6         base_color = [ 0.65, 0.9, 1.0 ];
7 };
8
9 biomass = {
10         label = "Biomass";
11         state = solid;
12         density = 985;
13         energy = 8000000.0;
14         base_color = [ 0.42, 0.42, 0.23 ];
15         compatibility = {
16                 wood: 0.01;
17         };
18 };
19
20 dirt = {
21         label = "Dirt";
22         state = solid;
23         density = 1600;
24         energy = 9001.0;
25         base_color = [ 0.47, 0.28, 0.0 ];
26         compatibility = {
27                 sand: 0.25;
28         };
29 };
30
31 ice = {
32         label = "Ice";
33         state = solid;
34         density = 916.7;
35         energy = 3600.0;
36         base_color = [ 0.7, 0.81, 0.98 ];
37         compatibility = {
38                 water: 0.9;
39         };
40 };
41
42 rock = {
43         label = "Rock";
44         state = solid;
45         density = 2600;
46         energy = 2800.0;
47         base_color = [ 0.35, 0.3, 0.25 ];
48         compatibility = {
49                 sand: 0.25;
50         };
51 };
52
53 sand = {
54         label = "Sand";
55         state = solid;
56         density = 1602;
57         energy = 3000.0;
58         base_color = [ 0.93, 0.79, 0.69 ];
59         compatibility = {
60                 dirt: 0.25;
61                 rock: 0.25;
62         };
63 };
64
65 water = {
66         label = "Water";
67         state = liquid;
68         density = 1020;
69         energy = 4200.0;
70         base_color = [ 0.25, 0.64, 0.87 ];
71         compatibility = {
72                 ice: 0.9;
73         };
74 };
75
76 wood = {
77         label = "Wood";
78         state = solid;
79         density = 600;
80         energy = 20000000.0;
81         base_color = [ 0.59, 0.44, 0.2 ];
82         compatibility = {
83                 biomass: 0.01;
84         };
85 };