-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.lua
431 lines (424 loc) · 25.5 KB
/
data.lua
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
--basic Substation
require "__Random_Utilities__.prototypes.item.substation.ru-basic-substation"
require "__Random_Utilities__.prototypes.entity.substation.ru-basic-substation"
require "__Random_Utilities__.prototypes.recipe.substation.ru-basic-substation"
require "__Random_Utilities__.prototypes.technology.substation.ru-basic-substation"
--medium Substation
require "__Random_Utilities__.prototypes.item.substation.ru-medium-substation"
require "__Random_Utilities__.prototypes.entity.substation.ru-medium-substation"
require "__Random_Utilities__.prototypes.recipe.substation.ru-medium-substation"
require "__Random_Utilities__.prototypes.technology.substation.ru-medium-substation"
--big Substation
require "__Random_Utilities__.prototypes.item.substation.ru-big-substation"
require "__Random_Utilities__.prototypes.entity.substation.ru-big-substation"
require "__Random_Utilities__.prototypes.recipe.substation.ru-big-substation"
require "__Random_Utilities__.prototypes.technology.substation.ru-big-substation"
--behemoth Substation
require "__Random_Utilities__.prototypes.item.substation.ru-behemoth-substation"
require "__Random_Utilities__.prototypes.entity.substation.ru-behemoth-substation"
require "__Random_Utilities__.prototypes.recipe.substation.ru-behemoth-substation"
require "__Random_Utilities__.prototypes.technology.substation.ru-behemoth-substation"
--Junction Pole
require "__Random_Utilities__.prototypes.item.substation.ru-junction-pole"
require "__Random_Utilities__.prototypes.entity.substation.ru-junction-pole"
require "__Random_Utilities__.prototypes.recipe.substation.ru-junction-pole"
--basic solar-panel
require "__Random_Utilities__.prototypes.item.solar-panel.ru-basic-solar-panel"
require "__Random_Utilities__.prototypes.entity.solar-panel.ru-basic-solar-panel"
require "__Random_Utilities__.prototypes.recipe.solar-panel.ru-basic-solar-panel"
require "__Random_Utilities__.prototypes.technology.solar-panel.ru-basic-solar-panel"
--medium solar-panel
require "__Random_Utilities__.prototypes.item.solar-panel.ru-medium-solar-panel"
require "__Random_Utilities__.prototypes.entity.solar-panel.ru-medium-solar-panel"
require "__Random_Utilities__.prototypes.recipe.solar-panel.ru-medium-solar-panel"
require "__Random_Utilities__.prototypes.technology.solar-panel.ru-medium-solar-panel"
--big solar-panel
require "__Random_Utilities__.prototypes.item.solar-panel.ru-big-solar-panel"
require "__Random_Utilities__.prototypes.entity.solar-panel.ru-big-solar-panel"
require "__Random_Utilities__.prototypes.recipe.solar-panel.ru-big-solar-panel"
require "__Random_Utilities__.prototypes.technology.solar-panel.ru-big-solar-panel"
--behemoth solar-panel
require "__Random_Utilities__.prototypes.item.solar-panel.ru-behemoth-solar-panel"
require "__Random_Utilities__.prototypes.entity.solar-panel.ru-behemoth-solar-panel"
require "__Random_Utilities__.prototypes.recipe.solar-panel.ru-behemoth-solar-panel"
require "__Random_Utilities__.prototypes.technology.solar-panel.ru-behemoth-solar-panel"
--animations
require "__Random_Utilities__.prototypes.entity.accumulator.ru-basic-accumulator-animations"
require "__Random_Utilities__.prototypes.entity.accumulator.ru-medium-accumulator-animations"
require "__Random_Utilities__.prototypes.entity.accumulator.ru-big-accumulator-animations"
require "__Random_Utilities__.prototypes.entity.accumulator.ru-behemoth-accumulator-animations"
--basic Accumulator
require "__Random_Utilities__.prototypes.item.accumulator.ru-basic-accumulator"
require "__Random_Utilities__.prototypes.entity.accumulator.ru-basic-accumulator"
require "__Random_Utilities__.prototypes.recipe.accumulator.ru-basic-accumulator"
require "__Random_Utilities__.prototypes.technology.accumulator.ru-basic-accumulator"
--medium Accumulator
require "__Random_Utilities__.prototypes.item.accumulator.ru-medium-accumulator"
require "__Random_Utilities__.prototypes.entity.accumulator.ru-medium-accumulator"
require "__Random_Utilities__.prototypes.recipe.accumulator.ru-medium-accumulator"
require "__Random_Utilities__.prototypes.technology.accumulator.ru-medium-accumulator"
--big Accumulator
require "__Random_Utilities__.prototypes.item.accumulator.ru-big-accumulator"
require "__Random_Utilities__.prototypes.entity.accumulator.ru-big-accumulator"
require "__Random_Utilities__.prototypes.recipe.accumulator.ru-big-accumulator"
require "__Random_Utilities__.prototypes.technology.accumulator.ru-big-accumulator"
--behemoth Accumulator
require "__Random_Utilities__.prototypes.item.accumulator.ru-behemoth-accumulator"
require "__Random_Utilities__.prototypes.entity.accumulator.ru-behemoth-accumulator"
require "__Random_Utilities__.prototypes.recipe.accumulator.ru-behemoth-accumulator"
require "__Random_Utilities__.prototypes.technology.accumulator.ru-behemoth-accumulator"
--basic Lamp
require "__Random_Utilities__.prototypes.item.lamp.ru-basic-lamp"
require "__Random_Utilities__.prototypes.entity.lamp.ru-basic-lamp"
require "__Random_Utilities__.prototypes.recipe.lamp.ru-basic-lamp"
require "__Random_Utilities__.prototypes.technology.lamp.ru-basic-lamp"
--medium lamp
require "__Random_Utilities__.prototypes.item.lamp.ru-medium-lamp"
require "__Random_Utilities__.prototypes.entity.lamp.ru-medium-lamp"
require "__Random_Utilities__.prototypes.recipe.lamp.ru-medium-lamp"
require "__Random_Utilities__.prototypes.technology.lamp.ru-medium-lamp"
--big lamp
require "__Random_Utilities__.prototypes.item.lamp.ru-big-lamp"
require "__Random_Utilities__.prototypes.entity.lamp.ru-big-lamp"
require "__Random_Utilities__.prototypes.recipe.lamp.ru-big-lamp"
require "__Random_Utilities__.prototypes.technology.lamp.ru-big-lamp"
--basic beacon
require "__Random_Utilities__.prototypes.item.beacon.ru-basic-beacon"
require "__Random_Utilities__.prototypes.entity.beacon.ru-basic-beacon"
require "__Random_Utilities__.prototypes.recipe.beacon.ru-basic-beacon"
require "__Random_Utilities__.prototypes.technology.beacon.ru-basic-beacon"
--medium beacon
require "__Random_Utilities__.prototypes.item.beacon.ru-medium-beacon"
require "__Random_Utilities__.prototypes.entity.beacon.ru-medium-beacon"
require "__Random_Utilities__.prototypes.recipe.beacon.ru-medium-beacon"
require "__Random_Utilities__.prototypes.technology.beacon.ru-medium-beacon"
--big beacon
require "__Random_Utilities__.prototypes.item.beacon.ru-big-beacon"
require "__Random_Utilities__.prototypes.entity.beacon.ru-big-beacon"
require "__Random_Utilities__.prototypes.recipe.beacon.ru-big-beacon"
require "__Random_Utilities__.prototypes.technology.beacon.ru-big-beacon"
require "__Random_Utilities__.prototypes.technology.walkable-beacon.ru-walkable-beacon"
--walkable beacon
require "__Random_Utilities__.prototypes.item.walkable-beacon.ru-walkable-beacon"
require "__Random_Utilities__.prototypes.entity.walkable-beacon.ru-walkable-beacon"
require "__Random_Utilities__.prototypes.recipe.walkable-beacon.ru-walkable-beacon"
--basic walkable beacon
require "__Random_Utilities__.prototypes.item.walkable-beacon.ru-walkable-basic-beacon"
require "__Random_Utilities__.prototypes.entity.walkable-beacon.ru-walkable-basic-beacon"
require "__Random_Utilities__.prototypes.recipe.walkable-beacon.ru-walkable-basic-beacon"
--medium walkable beacon
require "__Random_Utilities__.prototypes.item.walkable-beacon.ru-walkable-medium-beacon"
require "__Random_Utilities__.prototypes.entity.walkable-beacon.ru-walkable-medium-beacon"
require "__Random_Utilities__.prototypes.recipe.walkable-beacon.ru-walkable-medium-beacon"
--big walkable beacon
require "__Random_Utilities__.prototypes.item.walkable-beacon.ru-walkable-big-beacon"
require "__Random_Utilities__.prototypes.entity.walkable-beacon.ru-walkable-big-beacon"
require "__Random_Utilities__.prototypes.recipe.walkable-beacon.ru-walkable-big-beacon"
--basic Belt
require "__Random_Utilities__.prototypes.item.logistic.belt.ru-basic-transport-belt"
require "__Random_Utilities__.prototypes.entity.logistic.belt.ru-basic-transport-belt"
require "__Random_Utilities__.prototypes.recipe.logistic.belt.ru-basic-transport-belt"
require "__Random_Utilities__.prototypes.technology.logistic.ru-logistics-a"
--medium Belt
require "__Random_Utilities__.prototypes.item.logistic.belt.ru-medium-transport-belt"
require "__Random_Utilities__.prototypes.entity.logistic.belt.ru-medium-transport-belt"
require "__Random_Utilities__.prototypes.recipe.logistic.belt.ru-medium-transport-belt"
require "__Random_Utilities__.prototypes.technology.logistic.ru-logistics-b"
--big Belt
require "__Random_Utilities__.prototypes.item.logistic.belt.ru-big-transport-belt"
require "__Random_Utilities__.prototypes.entity.logistic.belt.ru-big-transport-belt"
require "__Random_Utilities__.prototypes.recipe.logistic.belt.ru-big-transport-belt"
require "__Random_Utilities__.prototypes.technology.logistic.ru-logistics-c"
--behemoth Belt
require "__Random_Utilities__.prototypes.item.logistic.belt.ru-behemoth-transport-belt"
require "__Random_Utilities__.prototypes.entity.logistic.belt.ru-behemoth-transport-belt"
require "__Random_Utilities__.prototypes.recipe.logistic.belt.ru-behemoth-transport-belt"
require "__Random_Utilities__.prototypes.technology.logistic.ru-logistics-d"
--Underground Basic Belt
require "__Random_Utilities__.prototypes.item.logistic.underground-belt.ru-basic-underground-belt"
require "__Random_Utilities__.prototypes.entity.logistic.underground-belt.ru-basic-underground-belt"
require "__Random_Utilities__.prototypes.recipe.logistic.underground-belt.ru-basic-underground-belt"
--Underground Medium Belt
require "__Random_Utilities__.prototypes.item.logistic.underground-belt.ru-medium-underground-belt"
require "__Random_Utilities__.prototypes.entity.logistic.underground-belt.ru-medium-underground-belt"
require "__Random_Utilities__.prototypes.recipe.logistic.underground-belt.ru-medium-underground-belt"
--Underground Big Belt
require "__Random_Utilities__.prototypes.item.logistic.underground-belt.ru-big-underground-belt"
require "__Random_Utilities__.prototypes.entity.logistic.underground-belt.ru-big-underground-belt"
require "__Random_Utilities__.prototypes.recipe.logistic.underground-belt.ru-big-underground-belt"
--Underground Behemoth Belt
require "__Random_Utilities__.prototypes.item.logistic.underground-belt.ru-behemoth-underground-belt"
require "__Random_Utilities__.prototypes.entity.logistic.underground-belt.ru-behemoth-underground-belt"
require "__Random_Utilities__.prototypes.recipe.logistic.underground-belt.ru-behemoth-underground-belt"
--splitter Basic Belt
require "__Random_Utilities__.prototypes.item.logistic.splitter.ru-basic-splitter"
require "__Random_Utilities__.prototypes.entity.logistic.splitter.ru-basic-splitter"
require "__Random_Utilities__.prototypes.recipe.logistic.splitter.ru-basic-splitter"
--splitter Medium Belt
require "__Random_Utilities__.prototypes.item.logistic.splitter.ru-medium-splitter"
require "__Random_Utilities__.prototypes.entity.logistic.splitter.ru-medium-splitter"
require "__Random_Utilities__.prototypes.recipe.logistic.splitter.ru-medium-splitter"
--splitter Big Belt
require "__Random_Utilities__.prototypes.item.logistic.splitter.ru-big-splitter"
require "__Random_Utilities__.prototypes.entity.logistic.splitter.ru-big-splitter"
require "__Random_Utilities__.prototypes.recipe.logistic.splitter.ru-big-splitter"
--splitter Behemoth Belt
require "__Random_Utilities__.prototypes.item.logistic.splitter.ru-behemoth-splitter"
require "__Random_Utilities__.prototypes.entity.logistic.splitter.ru-behemoth-splitter"
require "__Random_Utilities__.prototypes.recipe.logistic.splitter.ru-behemoth-splitter"
--loader Basic Belt
require "__Random_Utilities__.prototypes.item.logistic.loader.ru-basic-loader"
require "__Random_Utilities__.prototypes.entity.logistic.loader.ru-basic-loader"
require "__Random_Utilities__.prototypes.recipe.logistic.loader.ru-basic-loader"
--loader Medium Belt
require "__Random_Utilities__.prototypes.item.logistic.loader.ru-medium-loader"
require "__Random_Utilities__.prototypes.entity.logistic.loader.ru-medium-loader"
require "__Random_Utilities__.prototypes.recipe.logistic.loader.ru-medium-loader"
--loader Big Belt
require "__Random_Utilities__.prototypes.item.logistic.loader.ru-big-loader"
require "__Random_Utilities__.prototypes.entity.logistic.loader.ru-big-loader"
require "__Random_Utilities__.prototypes.recipe.logistic.loader.ru-big-loader"
--loader Behemoth Belt
require "__Random_Utilities__.prototypes.item.logistic.loader.ru-behemoth-loader"
require "__Random_Utilities__.prototypes.entity.logistic.loader.ru-behemoth-loader"
require "__Random_Utilities__.prototypes.recipe.logistic.loader.ru-behemoth-loader"
--basic Inserter x1
require "__Random_Utilities__.prototypes.item.inserter.inserter.x1.ru-basic-inserter"
require "__Random_Utilities__.prototypes.entity.inserter.inserter.x1.ru-basic-inserter"
require "__Random_Utilities__.prototypes.recipe.inserter.inserter.x1.ru-basic-inserter"
require "__Random_Utilities__.prototypes.technology.inserter.inserter.x1.ru-basic-inserter"
--medium Inserter x1
require "__Random_Utilities__.prototypes.item.inserter.inserter.x1.ru-medium-inserter"
require "__Random_Utilities__.prototypes.entity.inserter.inserter.x1.ru-medium-inserter"
require "__Random_Utilities__.prototypes.recipe.inserter.inserter.x1.ru-medium-inserter"
require "__Random_Utilities__.prototypes.technology.inserter.inserter.x1.ru-medium-inserter"
--big Inserter x1
require "__Random_Utilities__.prototypes.item.inserter.inserter.x1.ru-big-inserter"
require "__Random_Utilities__.prototypes.entity.inserter.inserter.x1.ru-big-inserter"
require "__Random_Utilities__.prototypes.recipe.inserter.inserter.x1.ru-big-inserter"
require "__Random_Utilities__.prototypes.technology.inserter.inserter.x1.ru-big-inserter"
--behemoth Inserter x1
require "__Random_Utilities__.prototypes.item.inserter.inserter.x1.ru-behemoth-inserter"
require "__Random_Utilities__.prototypes.entity.inserter.inserter.x1.ru-behemoth-inserter"
require "__Random_Utilities__.prototypes.recipe.inserter.inserter.x1.ru-behemoth-inserter"
require "__Random_Utilities__.prototypes.technology.inserter.inserter.x1.ru-behemoth-inserter"
--basic Stack Inserter x1
require "__Random_Utilities__.prototypes.item.inserter.stack-inserter.x1.ru-basic-stack-inserter"
require "__Random_Utilities__.prototypes.entity.inserter.stack-inserter.x1.ru-basic-stack-inserter"
require "__Random_Utilities__.prototypes.recipe.inserter.stack-inserter.x1.ru-basic-stack-inserter"
require "__Random_Utilities__.prototypes.technology.inserter.stack-inserter.x1.ru-basic-stack-inserter"
--medium Stack Inserter x1
require "__Random_Utilities__.prototypes.item.inserter.stack-inserter.x1.ru-medium-stack-inserter"
require "__Random_Utilities__.prototypes.entity.inserter.stack-inserter.x1.ru-medium-stack-inserter"
require "__Random_Utilities__.prototypes.recipe.inserter.stack-inserter.x1.ru-medium-stack-inserter"
require "__Random_Utilities__.prototypes.technology.inserter.stack-inserter.x1.ru-medium-stack-inserter"
--big Stack Inserter x1
require "__Random_Utilities__.prototypes.item.inserter.stack-inserter.x1.ru-big-stack-inserter"
require "__Random_Utilities__.prototypes.entity.inserter.stack-inserter.x1.ru-big-stack-inserter"
require "__Random_Utilities__.prototypes.recipe.inserter.stack-inserter.x1.ru-big-stack-inserter"
require "__Random_Utilities__.prototypes.technology.inserter.stack-inserter.x1.ru-big-stack-inserter"
--behemoth Stack Inserter x1
require "__Random_Utilities__.prototypes.item.inserter.stack-inserter.x1.ru-behemoth-stack-inserter"
require "__Random_Utilities__.prototypes.entity.inserter.stack-inserter.x1.ru-behemoth-stack-inserter"
require "__Random_Utilities__.prototypes.recipe.inserter.stack-inserter.x1.ru-behemoth-stack-inserter"
require "__Random_Utilities__.prototypes.technology.inserter.stack-inserter.x1.ru-behemoth-stack-inserter"
--basic Boiler
require "__Random_Utilities__.prototypes.item.boiler.ru-basic-boiler"
require "__Random_Utilities__.prototypes.entity.boiler.ru-basic-boiler"
require "__Random_Utilities__.prototypes.recipe.boiler.ru-basic-boiler"
require "__Random_Utilities__.prototypes.technology.boiler.ru-basic-boiler"
--medium Boiler
require "__Random_Utilities__.prototypes.item.boiler.ru-medium-boiler"
require "__Random_Utilities__.prototypes.entity.boiler.ru-medium-boiler"
require "__Random_Utilities__.prototypes.recipe.boiler.ru-medium-boiler"
require "__Random_Utilities__.prototypes.technology.boiler.ru-medium-boiler"
--big Boiler
require "__Random_Utilities__.prototypes.item.boiler.ru-big-boiler"
require "__Random_Utilities__.prototypes.entity.boiler.ru-big-boiler"
require "__Random_Utilities__.prototypes.recipe.boiler.ru-big-boiler"
require "__Random_Utilities__.prototypes.technology.boiler.ru-big-boiler"
--behemoth Boiler
require "__Random_Utilities__.prototypes.item.boiler.ru-behemoth-boiler"
require "__Random_Utilities__.prototypes.entity.boiler.ru-behemoth-boiler"
require "__Random_Utilities__.prototypes.recipe.boiler.ru-behemoth-boiler"
require "__Random_Utilities__.prototypes.technology.boiler.ru-behemoth-boiler"
--basic Steam Engine
require "__Random_Utilities__.prototypes.item.steam-engine.ru-basic-steam-engine"
require "__Random_Utilities__.prototypes.entity.steam-engine.ru-basic-steam-engine"
require "__Random_Utilities__.prototypes.recipe.steam-engine.ru-basic-steam-engine"
require "__Random_Utilities__.prototypes.technology.steam-engine.ru-basic-steam-engine"
--medium Steam Engine
require "__Random_Utilities__.prototypes.item.steam-engine.ru-medium-steam-engine"
require "__Random_Utilities__.prototypes.entity.steam-engine.ru-medium-steam-engine"
require "__Random_Utilities__.prototypes.recipe.steam-engine.ru-medium-steam-engine"
require "__Random_Utilities__.prototypes.technology.steam-engine.ru-medium-steam-engine"
--big Steam Engine
require "__Random_Utilities__.prototypes.item.steam-engine.ru-big-steam-engine"
require "__Random_Utilities__.prototypes.entity.steam-engine.ru-big-steam-engine"
require "__Random_Utilities__.prototypes.recipe.steam-engine.ru-big-steam-engine"
require "__Random_Utilities__.prototypes.technology.steam-engine.ru-big-steam-engine"
--behemoth Steam Engine
require "__Random_Utilities__.prototypes.item.steam-engine.ru-behemoth-steam-engine"
require "__Random_Utilities__.prototypes.entity.steam-engine.ru-behemoth-steam-engine"
require "__Random_Utilities__.prototypes.recipe.steam-engine.ru-behemoth-steam-engine"
require "__Random_Utilities__.prototypes.technology.steam-engine.ru-behemoth-steam-engine"
--basic fluid handling
require "__Random_Utilities__.prototypes.entity.fluid-handling.pipe-to-ground.ru-basic-pipe-to-ground"
require "__Random_Utilities__.prototypes.entity.fluid-handling.pipe.ru-basic-pipe"
require "__Random_Utilities__.prototypes.entity.fluid-handling.pump.ru-basic-pump"
require "__Random_Utilities__.prototypes.item.fluid-handling.pipe-to-ground.ru-basic-pipe-to-ground"
require "__Random_Utilities__.prototypes.item.fluid-handling.pipe.ru-basic-pipe"
require "__Random_Utilities__.prototypes.item.fluid-handling.pump.ru-basic-pump"
require "__Random_Utilities__.prototypes.recipe.fluid-handling.pipe-to-ground.ru-basic-pipe-to-ground"
require "__Random_Utilities__.prototypes.recipe.fluid-handling.pipe.ru-basic-pipe"
require "__Random_Utilities__.prototypes.recipe.fluid-handling.pump.ru-basic-pump"
require "__Random_Utilities__.prototypes.technology.fluid-handling.ru-basic-fluid-handling"
--medium fluid handling
require "__Random_Utilities__.prototypes.entity.fluid-handling.pipe-to-ground.ru-medium-pipe-to-ground"
require "__Random_Utilities__.prototypes.entity.fluid-handling.pipe.ru-medium-pipe"
require "__Random_Utilities__.prototypes.entity.fluid-handling.pump.ru-medium-pump"
require "__Random_Utilities__.prototypes.item.fluid-handling.pipe-to-ground.ru-medium-pipe-to-ground"
require "__Random_Utilities__.prototypes.item.fluid-handling.pipe.ru-medium-pipe"
require "__Random_Utilities__.prototypes.item.fluid-handling.pump.ru-medium-pump"
require "__Random_Utilities__.prototypes.recipe.fluid-handling.pipe-to-ground.ru-medium-pipe-to-ground"
require "__Random_Utilities__.prototypes.recipe.fluid-handling.pipe.ru-medium-pipe"
require "__Random_Utilities__.prototypes.recipe.fluid-handling.pump.ru-medium-pump"
require "__Random_Utilities__.prototypes.technology.fluid-handling.ru-medium-fluid-handling"
--big fluid handling
require "__Random_Utilities__.prototypes.entity.fluid-handling.pipe-to-ground.ru-big-pipe-to-ground"
require "__Random_Utilities__.prototypes.entity.fluid-handling.pipe.ru-big-pipe"
require "__Random_Utilities__.prototypes.entity.fluid-handling.pump.ru-big-pump"
require "__Random_Utilities__.prototypes.item.fluid-handling.pipe-to-ground.ru-big-pipe-to-ground"
require "__Random_Utilities__.prototypes.item.fluid-handling.pipe.ru-big-pipe"
require "__Random_Utilities__.prototypes.item.fluid-handling.pump.ru-big-pump"
require "__Random_Utilities__.prototypes.recipe.fluid-handling.pipe-to-ground.ru-big-pipe-to-ground"
require "__Random_Utilities__.prototypes.recipe.fluid-handling.pipe.ru-big-pipe"
require "__Random_Utilities__.prototypes.recipe.fluid-handling.pump.ru-big-pump"
require "__Random_Utilities__.prototypes.technology.fluid-handling.ru-big-fluid-handling"
--behemoth fluid handling
require "__Random_Utilities__.prototypes.entity.fluid-handling.pipe-to-ground.ru-behemoth-pipe-to-ground"
require "__Random_Utilities__.prototypes.entity.fluid-handling.pipe.ru-behemoth-pipe"
require "__Random_Utilities__.prototypes.entity.fluid-handling.pump.ru-behemoth-pump"
require "__Random_Utilities__.prototypes.item.fluid-handling.pipe-to-ground.ru-behemoth-pipe-to-ground"
require "__Random_Utilities__.prototypes.item.fluid-handling.pipe.ru-behemoth-pipe"
require "__Random_Utilities__.prototypes.item.fluid-handling.pump.ru-behemoth-pump"
require "__Random_Utilities__.prototypes.recipe.fluid-handling.pipe-to-ground.ru-behemoth-pipe-to-ground"
require "__Random_Utilities__.prototypes.recipe.fluid-handling.pipe.ru-behemoth-pipe"
require "__Random_Utilities__.prototypes.recipe.fluid-handling.pump.ru-behemoth-pump"
require "__Random_Utilities__.prototypes.technology.fluid-handling.ru-behemoth-fluid-handling"
--Infinite Repairer
require "__Random_Utilities__.prototypes.item.repair-pack.infinite-repairer"
require "__Random_Utilities__.prototypes.recipe.repair-pack.infinite-repairer"
require "__Random_Utilities__.prototypes.technology.repair-pack.infinite-repairer"
--alternative recipe
require "__Random_Utilities__.prototypes.recipe.alternativerecipe"
--cheaty recipe
require "__Random_Utilities__.prototypes.recipe.cheatyrecipe"
--lib
require "__Random_Utilities__.lib.item-goups"
if mods["miniloader"] then
ru_more_miniloaders = require("lib.miniloaders")
ru_more_miniloaders.create_miniloader{
name="ru-basic",
color="c5ae45",
underground_belt="ru-basic-underground-belt",
ingredients={
{"iron-gear-wheel", 20},
{"ru-basic-transport-belt", 2},
{"ru-basic-stack-inserter", 1},
{"electronic-circuit", 4}
},
filter_ingredients={
{"iron-gear-wheel", 20},
{"ru-basic-transport-belt", 2},
{"ru-basic-stack-inserter", 2},
{"electronic-circuit", 8}
},
tech_prereq={"ru-logistics-a", "express-miniloader"},
next_upgrade="ru-medium",
}
ru_more_miniloaders.create_miniloader{
name="ru-medium",
color="d73b41",
underground_belt="ru-medium-underground-belt",
ingredients={
{"iron-gear-wheel", 20},
{"ru-medium-transport-belt", 2},
{"ru-medium-stack-inserter", 1},
{"ru-basic-miniloader", 1},
{"electronic-circuit", 4}
},
filter_ingredients={
{"iron-gear-wheel", 20},
{"ru-medium-transport-belt", 2},
{"ru-medium-stack-inserter", 2},
{"ru-basic-filter-miniloader", 1},
{"electronic-circuit", 8}
},
tech_prereq={"ru-logistics-b", "express-miniloader"},
next_upgrade="ru-big",
}
ru_more_miniloaders.create_miniloader{
name="ru-big",
color="53b1c0",
underground_belt="ru-big-underground-belt",
ingredients={
{"iron-gear-wheel", 20},
{"ru-big-transport-belt", 2},
{"ru-big-stack-inserter", 1},
{"ru-medium-miniloader", 1},
{"advanced-circuit", 4}
},
filter_ingredients={
{"iron-gear-wheel", 20},
{"ru-big-transport-belt", 2},
{"ru-big-stack-inserter", 2},
{"ru-medium-filter-miniloader", 1},
{"advanced-circuit", 8}
},
tech_prereq={"ru-logistics-c", "express-miniloader"},
next_upgrade="ru-behemoth",
}
ru_more_miniloaders.create_miniloader{
name="ru-behemoth",
color="396067",
underground_belt="ru-behemoth-underground-belt",
ingredients={
{"iron-gear-wheel", 20},
{"ru-behemoth-transport-belt", 2},
{"ru-behemoth-stack-inserter", 1},
{"ru-big-miniloader", 1},
{"processing-unit", 4}
},
filter_ingredients={
{"iron-gear-wheel", 20},
{"ru-behemoth-transport-belt", 2},
{"ru-behemoth-stack-inserter", 2},
{"ru-big-filter-miniloader", 1},
{"processing-unit", 8}
},
tech_prereq={"ru-logistics-d", "express-miniloader"},
}
end
--Wire Shortcuts
if settings.startup["ru-Enable-Wire-Shortcuts"].value then
--Wire Shortcuts
require "__Random_Utilities__.prototypes.wireshotrcuts.input"
require "__Random_Utilities__.prototypes.wireshotrcuts.shortcut"
require "__Random_Utilities__.prototypes.wireshotrcuts.wire-cutter"
--Wire Shortcuts Crafting
if settings.startup["ru-wire-shortcuts-is-retain-wire-crafting"].value then
require "__Random_Utilities__.prototypes.wireshotrcuts.fake-item"
require "__Random_Utilities__.prototypes.wireshotrcuts.fake-recipe"
end
end
--Assembler Imput-Output
-- to add an item to the blacklist, add the name of the assembling machine to the table using:
-- appmod.blacklist['entity-name'] = true
-- please insert this during your data-updates stage
if not appmod then
appmod = {}
end
if not appmod.blacklist then
appmod.blacklist = {}
end