2013-07-17 15:34:35 -04:00
|
|
|
-- LV Alloy furnace
|
|
|
|
|
|
|
|
-- FIXME: kpoppel: I'd like to introduce an induction heating element here...
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'technic:lv_alloy_furnace',
|
|
|
|
recipe = {
|
2014-07-06 17:13:11 +01:00
|
|
|
{'default:brick', 'default:brick', 'default:brick'},
|
|
|
|
{'default:brick', 'technic:machine_casing', 'default:brick'},
|
|
|
|
{'default:brick', 'default:copper_ingot', 'default:brick'},
|
2013-07-17 15:34:35 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2014-07-03 15:57:39 +02:00
|
|
|
technic.register_alloy_furnace({tier = "LV", speed = 1, demand = {300}})
|
2013-07-17 15:34:35 -04:00
|
|
|
|