Add mods: technic, moreores, paintings, Nyancat (Pbj_pup). Small fix: sandwiches
This commit is contained in:
parent
15e8e696a2
commit
fb09deddc1
1404 changed files with 156555 additions and 211 deletions
26
mods/technic_plus_beta/technic/machines/LV/compressor.lua
Normal file
26
mods/technic_plus_beta/technic/machines/LV/compressor.lua
Normal file
|
@ -0,0 +1,26 @@
|
|||
|
||||
local S = technic.getter
|
||||
local mat = technic.materials
|
||||
|
||||
minetest.register_alias("compressor", "technic:lv_compressor")
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'technic:lv_compressor',
|
||||
recipe = {
|
||||
{mat.stone, 'basic_materials:motor', mat.stone},
|
||||
{'mesecons:piston', 'technic:machine_casing', 'mesecons:piston'},
|
||||
{'basic_materials:silver_wire', 'technic:lv_cable', 'basic_materials:silver_wire'},
|
||||
},
|
||||
replacements = {
|
||||
{"basic_materials:silver_wire", "basic_materials:empty_spool"},
|
||||
{"basic_materials:silver_wire", "basic_materials:empty_spool"}
|
||||
},
|
||||
})
|
||||
|
||||
technic.register_base_machine("technic:lv_compressor", {
|
||||
typename = "compressing",
|
||||
description = S("@1 Compressor", S("LV")),
|
||||
tier = "LV",
|
||||
demand = {300},
|
||||
speed = 1
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue