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
|
@ -0,0 +1,22 @@
|
|||
-- LV Electric Furnace
|
||||
-- This is a faster version of the stone furnace which runs on EUs
|
||||
local S = technic.getter
|
||||
local mat = technic.materials
|
||||
|
||||
-- FIXME: kpoppel I'd like to introduce an induction heating element here also
|
||||
minetest.register_craft({
|
||||
output = 'technic:lv_electric_furnace',
|
||||
recipe = {
|
||||
{mat.cobble, mat.cobble, mat.cobble},
|
||||
{mat.cobble, 'technic:machine_casing', mat.cobble},
|
||||
{mat.cobble, 'technic:lv_cable', mat.cobble},
|
||||
}
|
||||
})
|
||||
|
||||
technic.register_base_machine("technic:lv_electric_furnace", {
|
||||
typename = "cooking",
|
||||
description = S("@1 Furnace", S("LV")),
|
||||
tier="LV",
|
||||
demand={300},
|
||||
speed = 2
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue