-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecycler.lua
More file actions
38 lines (33 loc) · 1.15 KB
/
recycler.lua
File metadata and controls
38 lines (33 loc) · 1.15 KB
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
ctg_machines.register_recycle_machine({
tier = "LV",
demand = {500},
speed = 7
})
ctg_machines.register_recycle_machine({
tier = "MV",
demand = {1050},
speed = 14
})
ctg_machines.register_recycle_machine({
tier = "HV",
demand = {1950},
speed = 25
})
core.register_craft({
output = "ctg_machines:lv_recycler 1",
recipe = {{"", "technic:silicon_wafer", ""},
{"default:mese_crystal", "technic:lv_electric_furnace", "basic_materials:energy_crystal_simple"},
{"", "technic:machine_casing", ""}}
})
core.register_craft({
output = "ctg_machines:mv_recycler 1",
recipe = {{"", "technic:doped_silicon_wafer", ""},
{"ctg_world:titanium_ingot", "technic:mv_electric_furnace", "ctg_world:titanium_ingot"},
{"", "ctg_machines:lv_recycler", ""}}
})
core.register_craft({
output = "ctg_machines:hv_recycler 1",
recipe = {{"ctg_quartz:crystalline_glass", "ctg_quartz:quartz_block", "ctg_quartz:crystalline_glass"},
{"ctg_world:hiduminium_stock", "technic:hv_electric_furnace", "ctg_world:hiduminium_stock"},
{"", "ctg_machines:mv_recycler", ""}}
})