Add mods: technic, moreores, paintings, Nyancat (Pbj_pup). Small fix: sandwiches

This commit is contained in:
N-Nachtigal 2025-06-05 16:15:56 +02:00
parent 15e8e696a2
commit fb09deddc1
1404 changed files with 156555 additions and 211 deletions

View file

@ -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
})