diff options
author | Novatux <nathanael.courant@laposte.net> | 2014-07-02 19:43:24 +0200 |
---|---|---|
committer | Novatux <nathanael.courant@laposte.net> | 2014-07-02 19:43:24 +0200 |
commit | 88cbc6c2a70db42018051129cc0cd12832013f93 (patch) | |
tree | bff232151f21787fc3c2f83df457dce39a4b56b8 | |
parent | 2a23587445cfcd4019275c063ea09ad072a25421 (diff) |
Add MV extractor
-rw-r--r-- | technic/machines/MV/extractor.lua | 12 | ||||
-rw-r--r-- | technic/textures/technic_mv_extractor_bottom.png | bin | 0 -> 738 bytes | |||
-rw-r--r-- | technic/textures/technic_mv_extractor_front.png | bin | 0 -> 749 bytes | |||
-rw-r--r-- | technic/textures/technic_mv_extractor_front_active.png | bin | 0 -> 778 bytes | |||
-rw-r--r-- | technic/textures/technic_mv_extractor_side.png | bin | 0 -> 726 bytes | |||
-rw-r--r-- | technic/textures/technic_mv_extractor_top.png | bin | 0 -> 542 bytes |
6 files changed, 12 insertions, 0 deletions
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 Binary files differnew file mode 100644 index 0000000..70f34ee --- /dev/null +++ b/technic/textures/technic_mv_extractor_bottom.png diff --git a/technic/textures/technic_mv_extractor_front.png b/technic/textures/technic_mv_extractor_front.png Binary files differnew file mode 100644 index 0000000..18648c2 --- /dev/null +++ b/technic/textures/technic_mv_extractor_front.png diff --git a/technic/textures/technic_mv_extractor_front_active.png b/technic/textures/technic_mv_extractor_front_active.png Binary files differnew file mode 100644 index 0000000..ee86ade --- /dev/null +++ b/technic/textures/technic_mv_extractor_front_active.png diff --git a/technic/textures/technic_mv_extractor_side.png b/technic/textures/technic_mv_extractor_side.png Binary files differnew file mode 100644 index 0000000..cbe3673 --- /dev/null +++ b/technic/textures/technic_mv_extractor_side.png diff --git a/technic/textures/technic_mv_extractor_top.png b/technic/textures/technic_mv_extractor_top.png Binary files differnew file mode 100644 index 0000000..2259d64 --- /dev/null +++ b/technic/textures/technic_mv_extractor_top.png |