Add HV furnace and grinder.

This commit is contained in:
Bluebird 2015-02-20 15:17:41 -06:00
parent 5b7f1813ce
commit 1d854940c3
8 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,17 @@
-- HV Electric Furnace
--
-- Credits:
-- Original code and idea is from cheapie: <https://forum.minetest.net/viewtopic.php?id=7953>
-- Based on the pull request from qwrwed: <https://github.com/minetest-technic/technic/pull/118>
minetest.register_craft({
output = 'technic:hv_electric_furnace',
recipe = {
{'technic:stainless_steel_ingot', 'technic:mv_electric_furnace', 'technic:stainless_steel_ingot'},
{'pipeworks:tube_1', 'technic:hv_transformer', 'pipeworks:tube_1'},
{'technic:stainless_steel_ingot', 'technic:hv_cable0', 'technic:stainless_steel_ingot'},
}
})
technic.register_electric_furnace({tier="HV", upgrade=1, upgrade_slots=4, tube=1, demand=10000, demand_reduction_factor=0.75, speed=8})

View File

@ -0,0 +1,17 @@
-- HV grinder
--
-- Credits:
-- Original code and idea is from cheapie: <https://forum.minetest.net/viewtopic.php?id=7953>
-- Based on the pull request from qwrwed: <https://github.com/minetest-technic/technic/pull/118>
minetest.register_craft({
output = 'technic:hv_grinder',
recipe = {
{'technic:stainless_steel_ingot', 'technic:mv_grinder', 'technic:stainless_steel_ingot'},
{'pipeworks:tube_1', 'technic:hv_transformer', 'pipeworks:tube_1'},
{'technic:stainless_steel_ingot', 'technic:hv_cable0', 'technic:stainless_steel_ingot'},
}
})
technic.register_grinder({tier="HV", demand=2000, demand_reduction_factor=0.75, speed=4, upgrade=1, upgrade_slots=4, tube=1})

View File

@ -15,4 +15,6 @@ dofile(path.."/generator.lua")
-- Machines -- Machines
dofile(path.."/quarry.lua") dofile(path.."/quarry.lua")
dofile(path.."/forcefield.lua") dofile(path.."/forcefield.lua")
dofile(path.."/electric_furnace.lua")
dofile(path.."/grinder.lua")

Binary file not shown.

After

Width:  |  Height:  |  Size: 427 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 611 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 580 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 506 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB