183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
|
end;
}
end
starlit.item.sw.link('starlit_electronics:compile_commune', matterCompiler {
name = 'Compile Matter';
desc = "A basic suit matter compiler program. It's rather slow, but it's been ruthlessly optimized for size- and memory-efficiency by some of the Commune's most fanatic coders, to the point where every Commune nanosuit can come with the program preinstalled.";
size = 700e3;
cost = {
cycles = 4e9;
ram = .3e9;
};
})
starlit.item.sw.link('starlit_electronics:compile_block_commune', {
name = 'Compile Block';
kind = 'suitPower', powerKind = 'active';
desc = "An advanced suit matter compiler program, capable of printing complete devices and structure parts directly into the world.";
size = 5e6;
cost = {
cycles = 8e9;
ram = 1e9;
};
ui = 'starlit:compile-matter-block';
run = function(user, ctx)
end;
})
starlit.item.sw.link('starlit_electronics:compile_imperial', matterCompiler {
name = 'Genesis Deluxe';
desc = "House Bascundir has long dominated the matter compiler market in the Crystal Sea. Their firmware is excessively complex due to mountains of specialized edge-case handling, but the end result is certainly speedier than the competitors'.";
size = 2e4;
cost = {
cycles = 100e6;
ram = 1.5e9;
};
})
do local J = starlit.store.compilerJob
starlit.item.sw.link('starlit_electronics:driver_compiler_commune', {
name = 'Matter Compiler';
|
|
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
|
end;
}
end
starlit.item.sw.link('starlit_electronics:compile_commune', matterCompiler {
name = 'Compile Matter';
desc = "A basic suit matter compiler program. It's rather slow, but it's been ruthlessly optimized for size- and memory-efficiency by some of the Commune's most fanatic coders, to the point where every Commune nanosuit can come with the program preinstalled.";
size = 700e6;
cost = {
cycles = 4e9;
ram = .3e9;
};
})
starlit.item.sw.link('starlit_electronics:compile_block_commune', {
name = 'Compile Block';
kind = 'suitPower', powerKind = 'active';
desc = "An advanced suit matter compiler program, capable of printing complete devices and structure parts directly into the world.";
size = 500e6;
cost = {
cycles = 8e9;
ram = 1e9;
};
ui = 'starlit:compile-matter-block';
run = function(user, ctx)
end;
})
starlit.item.sw.link('starlit_electronics:compile_imperial', matterCompiler {
name = 'Genesis Deluxe';
desc = "House Bascundir has long dominated the matter compiler market in the Crystal Sea. Their firmware is excessively complex due to mountains of specialized edge-case handling, but the end result is certainly speedier than the competitors'.";
size = 2e9;
cost = {
cycles = 1e9;
ram = 1.5e9;
};
})
do local J = starlit.store.compilerJob
starlit.item.sw.link('starlit_electronics:driver_compiler_commune', {
name = 'Matter Compiler';
|