diff options
author | ShadowNinja <noreply@gmail.com> | 2013-07-17 15:34:35 -0400 |
---|---|---|
committer | ShadowNinja <noreply@gmail.com> | 2013-09-17 16:37:56 -0400 |
commit | ee0765804c0a21deeb2f33c22ac1a36cb0db5f43 (patch) | |
tree | d6445b48f5663e10a83a2f718ffbcce5883be798 /technic/machines/MV/cables.lua | |
parent | 48ea6fb99de29a58e01c8c923bdca626aaf47c65 (diff) |
Partial rewrite
Diffstat (limited to 'technic/machines/MV/cables.lua')
-rw-r--r-- | technic/machines/MV/cables.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/technic/machines/MV/cables.lua b/technic/machines/MV/cables.lua new file mode 100644 index 0000000..b1a34c8 --- /dev/null +++ b/technic/machines/MV/cables.lua @@ -0,0 +1,14 @@ + +minetest.register_alias("mv_cable", "technic:mv_cable0") + +minetest.register_craft({ + output = 'technic:mv_cable0 3', + recipe ={ + {'technic:rubber', 'technic:rubber', 'technic:rubber'}, + {'technic:lv_cable0', 'technic:lv_cable0', 'technic:lv_cable0'}, + {'technic:rubber', 'technic:rubber', 'technic:rubber'}, + } +}) + +technic.register_cable("MV", 2.5/16) + |