90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
...
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
B.part.link('starlit_building:concrete', {
name = 'Concrete';
desc = 'A sturdy base for modular construction units.';
img = 'starlit-item-concrete.png';
fab = starlit.type.fab {
element = {
calcium = 1;
carbon = 4;
};
cost = {power = 200};
flag = {print=true};
time = {print=5};
};
mass = 5;
rarity = 1;
})
B.part.link('starlit_building:insulation', {
name = 'Insulation';
desc = 'An aerogel that traps heat very effectively.';
img = 'starlit-item-insulation.png';
................................................................................
B.part.link('starlit_building:panel', {
name = 'Panel';
desc = 'A sheet of aluminum suitable for use as a wall or floor panel.';
img = 'starlit-item-panel.png';
fab = starlit.type.fab {
element = {
aluminum = 8;
};
cost = {power = 300};
flag = {print=true};
time = {print=15};
};
mass = 8;
rarity = 1;
})
B.part.link('starlit_building:pipe', {
name = 'Pipe';
desc = 'A pipe suitable for conveying liquids or gasses.';
img = 'starlit-item-pipe.png';
|
|
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
...
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
B.part.link('starlit_building:concrete', {
name = 'Concrete';
desc = 'A sturdy base for modular construction units.';
img = 'starlit-item-concrete.png';
fab = starlit.type.fab {
element = {
calcium = 1;
carbon = 3;
};
cost = {power = 200};
flag = {print=true};
time = {print=5};
};
mass = 4;
rarity = 1;
})
B.part.link('starlit_building:insulation', {
name = 'Insulation';
desc = 'An aerogel that traps heat very effectively.';
img = 'starlit-item-insulation.png';
................................................................................
B.part.link('starlit_building:panel', {
name = 'Panel';
desc = 'A sheet of aluminum suitable for use as a wall or floor panel.';
img = 'starlit-item-panel.png';
fab = starlit.type.fab {
element = {
aluminum = 4;
};
cost = {power = 300};
flag = {print=true};
time = {print=15};
};
mass = 4;
rarity = 1;
})
B.part.link('starlit_building:pipe', {
name = 'Pipe';
desc = 'A pipe suitable for conveying liquids or gasses.';
img = 'starlit-item-pipe.png';
|