12
compressor.lua
Normal file
@ -0,0 +1,12 @@
|
||||
-- HV compressor
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'technic_hv_extend:hv_compressor',
|
||||
recipe = {
|
||||
{'technic:carbon_plate', 'technic:mv_compressor', 'technic:composite_plate'},
|
||||
{'pipeworks:tube_1', 'technic:hv_transformer', 'pipeworks:tube_1'},
|
||||
{'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'},
|
||||
}
|
||||
})
|
||||
|
||||
technic.register_compressor({tier = "HV", demand = {1500, 1000, 750}, speed = 6, upgrade = 1, tube = 1, modname="technic_hv_extend"})
|
17
electric_furnace.lua
Normal file
@ -0,0 +1,17 @@
|
||||
-- HV Electric Furnace
|
||||
-- This is a faster version of the stone 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.
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'technic_hv_extend:hv_electric_furnace',
|
||||
recipe = {
|
||||
{'technic:carbon_plate', 'technic:mv_electric_furnace', 'technic:composite_plate'},
|
||||
{'pipeworks:tube_1', 'technic:hv_transformer', 'pipeworks:tube_1'},
|
||||
{'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'},
|
||||
}
|
||||
})
|
||||
|
||||
technic.register_electric_furnace({tier="HV", upgrade=1, tube=1, demand={4000, 2500, 1500}, speed=12, modname="technic_hv_extend"})
|
||||
|
13
grinder.lua
Normal file
@ -0,0 +1,13 @@
|
||||
-- HV grinder
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'technic_hv_extend:hv_grinder',
|
||||
recipe = {
|
||||
{'technic:carbon_plate', 'technic:mv_grinder', 'technic:composite_plate'},
|
||||
{'pipeworks:tube_1', 'technic:hv_transformer', 'pipeworks:tube_1'},
|
||||
{'technic:stainless_steel_ingot', 'technic:hv_cable', 'technic:stainless_steel_ingot'},
|
||||
}
|
||||
})
|
||||
|
||||
technic.register_grinder({tier="HV", demand={1200, 900, 600}, speed=6, upgrade=1, tube=1, modname="technic_hv_extend"})
|
||||
|
6
init.lua
Normal file
@ -0,0 +1,6 @@
|
||||
local modname = minetest.get_current_modname()
|
||||
local path = minetest.get_modpath(modname)
|
||||
|
||||
dofile(path.."/electric_furnace.lua")
|
||||
dofile(path.."/grinder.lua")
|
||||
dofile(path.."/compressor.lua")
|
2
mod.conf
Normal file
@ -0,0 +1,2 @@
|
||||
name = technic_hv_extend
|
||||
depends = technic
|
BIN
screenshot.png
Normal file
After Width: | Height: | Size: 544 KiB |
BIN
textures/technic_hv_extend_hv_battery_box_bottom.png
Normal file
After Width: | Height: | Size: 338 B |
BIN
textures/technic_hv_extend_hv_battery_box_front.png
Normal file
After Width: | Height: | Size: 452 B |
BIN
textures/technic_hv_extend_hv_battery_box_side.png
Normal file
After Width: | Height: | Size: 475 B |
BIN
textures/technic_hv_extend_hv_battery_box_top.png
Normal file
After Width: | Height: | Size: 575 B |
BIN
textures/technic_hv_extend_hv_cable.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
textures/technic_hv_extend_hv_cable_wield.png
Normal file
After Width: | Height: | Size: 601 B |
BIN
textures/technic_hv_extend_hv_compressor_bottom.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
textures/technic_hv_extend_hv_compressor_front.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
textures/technic_hv_extend_hv_compressor_front_active.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
textures/technic_hv_extend_hv_compressor_side.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
textures/technic_hv_extend_hv_compressor_side_tube.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
textures/technic_hv_extend_hv_compressor_top.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
textures/technic_hv_extend_hv_down_converter_bottom.png
Normal file
After Width: | Height: | Size: 653 B |
BIN
textures/technic_hv_extend_hv_down_converter_side.png
Normal file
After Width: | Height: | Size: 609 B |
BIN
textures/technic_hv_extend_hv_down_converter_top.png
Normal file
After Width: | Height: | Size: 653 B |
BIN
textures/technic_hv_extend_hv_electric_furnace_bottom.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
textures/technic_hv_extend_hv_electric_furnace_front.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
textures/technic_hv_extend_hv_electric_furnace_front_active.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
textures/technic_hv_extend_hv_electric_furnace_side.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
textures/technic_hv_extend_hv_electric_furnace_side_tube.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
textures/technic_hv_extend_hv_electric_furnace_top.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
textures/technic_hv_extend_hv_generator_front.png
Normal file
After Width: | Height: | Size: 450 B |
BIN
textures/technic_hv_extend_hv_generator_front_active.png
Normal file
After Width: | Height: | Size: 469 B |
BIN
textures/technic_hv_extend_hv_generator_side.png
Normal file
After Width: | Height: | Size: 357 B |
BIN
textures/technic_hv_extend_hv_generator_top.png
Normal file
After Width: | Height: | Size: 384 B |
BIN
textures/technic_hv_extend_hv_grinder_bottom.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
textures/technic_hv_extend_hv_grinder_front.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
textures/technic_hv_extend_hv_grinder_front_active.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
textures/technic_hv_extend_hv_grinder_side.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
textures/technic_hv_extend_hv_grinder_side_tube.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
textures/technic_hv_extend_hv_grinder_top.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
textures/technic_hv_extend_hv_nuclear_reactor_core.png
Normal file
After Width: | Height: | Size: 896 B |
BIN
textures/technic_hv_extend_hv_solar_array_bottom.png
Normal file
After Width: | Height: | Size: 574 B |
BIN
textures/technic_hv_extend_hv_solar_array_side.png
Normal file
After Width: | Height: | Size: 709 B |
BIN
textures/technic_hv_extend_hv_solar_array_top.png
Normal file
After Width: | Height: | Size: 777 B |
BIN
textures/technic_hv_extend_hv_transformer.png
Normal file
After Width: | Height: | Size: 1.8 KiB |