Differences From
Artifact [01ffc64dd2]:
82 82 cost = {power = 500};
83 83 flag = {print=true};
84 84 time = {print=20};
85 85 };
86 86 mass = 24;
87 87 rarity = 1;
88 88 })
89 +
90 +B.part.link('starlit_building:concrete', {
91 + name = 'Concrete';
92 + desc = 'A sturdy base for modular construction units.';
93 + img = 'starlit-item-concrete.png';
94 + fab = starlit.type.fab {
95 + element = {
96 + calcium = 1;
97 + carbon = 4;
98 + };
99 + cost = {power = 200};
100 + flag = {print=true};
101 + time = {print=5};
102 + };
103 + mass = 5;
104 + rarity = 1;
105 +})
106 +
107 +B.part.link('starlit_building:insulation', {
108 + name = 'Insulation';
109 + desc = 'An aerogel that traps heat very effectively.';
110 + img = 'starlit-item-insulation.png';
111 + fab = starlit.type.fab {
112 + element = {
113 + silicon = 4;
114 + };
115 + cost = {power = 100};
116 + flag = {print=true};
117 + time = {print=5};
118 + };
119 + mass = 4;
120 + rarity = 1;
121 +})
122 +
123 +B.part.link('starlit_building:panel', {
124 + name = 'Panel';
125 + desc = 'A sheet of aluminum suitable for use as a wall or floor panel.';
126 + img = 'starlit-item-panel.png';
127 + fab = starlit.type.fab {
128 + element = {
129 + aluminum = 8;
130 + };
131 + cost = {power = 300};
132 + flag = {print=true};
133 + time = {print=15};
134 + };
135 + mass = 8;
136 + rarity = 1;
137 +})
138 +
139 +B.part.link('starlit_building:pipe', {
140 + name = 'Pipe';
141 + desc = 'A pipe suitable for conveying liquids or gasses.';
142 + img = 'starlit-item-pipe.png';
143 + fab = starlit.type.fab {
144 + element = {
145 + aluminum = 4;
146 + };
147 + cost = {power = 300};
148 + flag = {print=true};
149 + time = {print=15};
150 + };
151 + mass = 4;
152 + rarity = 1;
153 +})