Zefram
2014-08-14 6cc471e986c694298716c257528c653395bd757d
technic/tools/mining_lasers.lua
@@ -16,25 +16,25 @@
minetest.register_craft({
   output = 'technic:laser_mk1',
   recipe = {
      {'default:diamond', 'default:steel_ingot', 'technic:red_energy_crystal'},
      {'',                'default:steel_ingot', 'default:steel_ingot'},
      {'',                '',                    'default:copper_ingot'},
      {'default:diamond', 'technic:brass_ingot',        'default:obsidian_glass'},
      {'',                'technic:brass_ingot',        'technic:red_energy_crystal'},
      {'',                '',                           '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'},
      {'default:diamond', 'technic:carbon_steel_ingot', 'technic:laser_mk1'},
      {'',                'technic:carbon_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'},
      {'default:diamond', 'technic:carbon_steel_ingot', 'technic:laser_mk2'},
      {'',                'technic:carbon_steel_ingot', 'technic:blue_energy_crystal'},
      {'',                '',                           'default:copper_ingot'},
   }
})