diff --git a/technic/machines/MV/extractor.lua b/technic/machines/MV/extractor.lua new file mode 100644 index 0000000..fdef5b2 --- /dev/null +++ b/technic/machines/MV/extractor.lua @@ -0,0 +1,12 @@ +-- MV extractor + +minetest.register_craft({ + output = 'technic:mv_extractor', + recipe = { + {'technic:stainless_steel_ingot', 'technic:lv_extractor', 'technic:stainless_steel_ingot'}, + {'pipeworks:tube_1', 'technic:mv_transformer', 'pipeworks:tube_1'}, + {'technic:stainless_steel_ingot', 'technic:mv_cable0', 'technic:stainless_steel_ingot'}, + } +}) + +technic.register_extractor({tier = "MV", demand = {800, 600, 400}, speed = 2, upgrade = 1, tube = 1}) diff --git a/technic/textures/technic_mv_extractor_bottom.png b/technic/textures/technic_mv_extractor_bottom.png new file mode 100644 index 0000000..70f34ee Binary files /dev/null and b/technic/textures/technic_mv_extractor_bottom.png differ diff --git a/technic/textures/technic_mv_extractor_front.png b/technic/textures/technic_mv_extractor_front.png new file mode 100644 index 0000000..18648c2 Binary files /dev/null and b/technic/textures/technic_mv_extractor_front.png differ diff --git a/technic/textures/technic_mv_extractor_front_active.png b/technic/textures/technic_mv_extractor_front_active.png new file mode 100644 index 0000000..ee86ade Binary files /dev/null and b/technic/textures/technic_mv_extractor_front_active.png differ diff --git a/technic/textures/technic_mv_extractor_side.png b/technic/textures/technic_mv_extractor_side.png new file mode 100644 index 0000000..cbe3673 Binary files /dev/null and b/technic/textures/technic_mv_extractor_side.png differ diff --git a/technic/textures/technic_mv_extractor_top.png b/technic/textures/technic_mv_extractor_top.png new file mode 100644 index 0000000..2259d64 Binary files /dev/null and b/technic/textures/technic_mv_extractor_top.png differ