From 88cbc6c2a70db42018051129cc0cd12832013f93 Mon Sep 17 00:00:00 2001 From: Novatux Date: Wed, 2 Jul 2014 19:43:24 +0200 Subject: Add MV extractor --- technic/machines/MV/extractor.lua | 12 ++++++++++++ technic/textures/technic_mv_extractor_bottom.png | Bin 0 -> 738 bytes technic/textures/technic_mv_extractor_front.png | Bin 0 -> 749 bytes technic/textures/technic_mv_extractor_front_active.png | Bin 0 -> 778 bytes technic/textures/technic_mv_extractor_side.png | Bin 0 -> 726 bytes technic/textures/technic_mv_extractor_top.png | Bin 0 -> 542 bytes 6 files changed, 12 insertions(+) create mode 100644 technic/machines/MV/extractor.lua create mode 100644 technic/textures/technic_mv_extractor_bottom.png create mode 100644 technic/textures/technic_mv_extractor_front.png create mode 100644 technic/textures/technic_mv_extractor_front_active.png create mode 100644 technic/textures/technic_mv_extractor_side.png create mode 100644 technic/textures/technic_mv_extractor_top.png 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 -- cgit v1.2.3