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
21
mods/technic_plus_beta/technic/machines/MV/freezer.lua
Normal file
21
mods/technic_plus_beta/technic/machines/MV/freezer.lua
Normal file
|
@ -0,0 +1,21 @@
|
|||
-- MV freezer
|
||||
local S = technic.getter
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'technic:mv_freezer',
|
||||
recipe = {
|
||||
{'technic:stainless_steel_ingot', 'basic_materials:motor', 'technic:stainless_steel_ingot'},
|
||||
{'pipeworks:pipe_1_empty', 'technic:mv_transformer', 'pipeworks:pipe_1_empty'},
|
||||
{'technic:stainless_steel_ingot', 'technic:mv_cable', 'technic:stainless_steel_ingot'},
|
||||
}
|
||||
})
|
||||
|
||||
technic.register_base_machine("technic:mv_freezer", {
|
||||
typename = "freezing",
|
||||
description = S("@1 Freezer", S("MV")),
|
||||
tier = "MV",
|
||||
demand = {800, 600, 400},
|
||||
speed = 0.5,
|
||||
upgrade = 1,
|
||||
tube = 1
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue