Add MV extractor
authorNovatux <nathanael.courant@laposte.net>
Wed, 2 Jul 2014 17:43:24 +0000 (19:43 +0200)
committerNovatux <nathanael.courant@laposte.net>
Wed, 2 Jul 2014 17:43:24 +0000 (19:43 +0200)
technic/machines/MV/extractor.lua [new file with mode: 0644]
technic/textures/technic_mv_extractor_bottom.png [new file with mode: 0644]
technic/textures/technic_mv_extractor_front.png [new file with mode: 0644]
technic/textures/technic_mv_extractor_front_active.png [new file with mode: 0644]
technic/textures/technic_mv_extractor_side.png [new file with mode: 0644]
technic/textures/technic_mv_extractor_top.png [new file with mode: 0644]

diff --git a/technic/machines/MV/extractor.lua b/technic/machines/MV/extractor.lua
new file mode 100644 (file)
index 0000000..fdef5b2
--- /dev/null
@@ -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 (file)
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 (file)
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 (file)
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 (file)
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 (file)
index 0000000..2259d64
Binary files /dev/null and b/technic/textures/technic_mv_extractor_top.png differ