Add HV furnace and grinder (by cheapie)
18
technic/machines/HV/electric_furnace.lua
Normal file
|
@ -0,0 +1,18 @@
|
|||
-- HV Electric Furnace
|
||||
-- This is a faster version of the MV furnace which runs on EUs
|
||||
-- In addition to this it can be upgraded with microcontrollers and batteries
|
||||
-- This new version uses the batteries to lower the power consumption of the machine
|
||||
-- Also in addition this furnace can be attached to the pipe system from the pipeworks mod.
|
||||
|
||||
-- FIXME: kpoppel I'd like to introduce an induction heating element here also
|
||||
minetest.register_craft({
|
||||
output = 'technic:hv_electric_furnace',
|
||||
recipe = {
|
||||
{'technic:stainless_steel_ingot', 'technic:mv_electric_furnace', 'technic:stainless_steel_ingot'},
|
||||
{'pipeworks:tube_000000', 'technic:hv_transformer', 'pipeworks:tube_000000'},
|
||||
{'technic:stainless_steel_ingot', 'technic:hv_cable0', 'technic:stainless_steel_ingot'},
|
||||
}
|
||||
})
|
||||
|
||||
technic.register_electric_furnace({tier="HV", upgrade=1, tube=1, demand={10000, 5000, 2500}, speed=16})
|
||||
|
13
technic/machines/HV/grinder.lua
Normal file
|
@ -0,0 +1,13 @@
|
|||
-- HV grinder
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'technic:hv_grinder',
|
||||
recipe = {
|
||||
{'technic:stainless_steel_ingot', 'technic:mv_grinder', 'technic:stainless_steel_ingot'},
|
||||
{'pipeworks:tube_000000', 'technic:hv_transformer', 'pipeworks:tube_000000'},
|
||||
{'technic:stainless_steel_ingot', 'technic:hv_cable0', 'technic:stainless_steel_ingot'},
|
||||
}
|
||||
})
|
||||
|
||||
technic.register_grinder({tier="HV", demand={2000, 1000, 500}, speed=8, upgrade=1, tube=1})
|
||||
|
|
@ -10,4 +10,5 @@ dofile(path.."/battery_box.lua")
|
|||
dofile(path.."/solar_array.lua")
|
||||
dofile(path.."/nuclear_reactor.lua")
|
||||
dofile(path.."/generator.lua")
|
||||
|
||||
dofile(path.."/electric_furnace.lua")
|
||||
dofile(path.."/grinder.lua")
|
||||
|
|
BIN
technic/textures/technic_hv_electric_furnace_bottom.png
Normal file
After Width: | Height: | Size: 410 B |
BIN
technic/textures/technic_hv_electric_furnace_front.png
Normal file
After Width: | Height: | Size: 558 B |
BIN
technic/textures/technic_hv_electric_furnace_front_active.png
Normal file
After Width: | Height: | Size: 523 B |
BIN
technic/textures/technic_hv_electric_furnace_side.png
Normal file
After Width: | Height: | Size: 410 B |
BIN
technic/textures/technic_hv_electric_furnace_side_tube.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
technic/textures/technic_hv_electric_furnace_top.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 862 B After Width: | Height: | Size: 738 B |
Before Width: | Height: | Size: 716 B After Width: | Height: | Size: 733 B |
Before Width: | Height: | Size: 733 B After Width: | Height: | Size: 765 B |
Before Width: | Height: | Size: 753 B After Width: | Height: | Size: 702 B |
Before Width: | Height: | Size: 791 B After Width: | Height: | Size: 714 B |
Before Width: | Height: | Size: 616 B After Width: | Height: | Size: 517 B |