Revised recipe for mk1 laser and added mk2 & mk3 laser recipes.
authorBryant Mairs <bwmairs@ucsc.edu>
Wed, 4 Dec 2013 02:45:33 +0000 (18:45 -0800)
committerShadowNinja <shadowninja@minetest.net>
Sun, 30 Mar 2014 21:40:54 +0000 (17:40 -0400)
technic/tools/mining_lasers.lua

index e06a00de58c0466c575ec8daaa256570060f1a8a..2a5a6b2bf78bca7b5f00340f24540cc300d905fc 100644 (file)
@@ -17,8 +17,24 @@ local S = technic.getter
 minetest.register_craft({
        output = 'technic:laser_mk1',
        recipe = {
-               {'default:diamond', 'default:steel_ingot', 'technic:battery'},
-               {'',                'default:steel_ingot', 'technic:battery'},
+               {'default:diamond', 'default:steel_ingot', 'technic:red_energy_crystal'},
+               {'',                'default:steel_ingot', 'technic:steel_ingot'},
+               {'',                '',                    'default:copper_ingot'},
+       }
+})
+minetest.register_craft({
+       output = 'technic:laser_mk2',
+       recipe = {
+               {'default:diamond', 'default:steel_ingot', 'technic:laser_mk1'},
+               {'',                'default:steel_ingot', 'technic:green_energy_crystal'},
+               {'',                '',                    'default:copper_ingot'},
+       }
+})
+minetest.register_craft({
+       output = 'technic:laser_mk3',
+       recipe = {
+               {'default:diamond', 'default:steel_ingot', 'technic:laser_mk2'},
+               {'',                'default:steel_ingot', 'technic:blue_energy_crystal'},
                {'',                '',                    'default:copper_ingot'},
        }
 })