diff options
author | Bryant Mairs <bwmairs@ucsc.edu> | 2013-12-03 18:45:33 -0800 |
---|---|---|
committer | ShadowNinja <shadowninja@minetest.net> | 2014-03-30 17:40:54 -0400 |
commit | 49052d6f4a2ca8d0e7b058e59c0f93ed7e8df32b (patch) | |
tree | e334b5dedf5afea8dbbf3aff3e817285e55ac9f9 | |
parent | 252156d653c63ec2f6d6caa219365ed5d6994d40 (diff) |
Revised recipe for mk1 laser and added mk2 & mk3 laser recipes.
-rw-r--r-- | technic/tools/mining_lasers.lua | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/technic/tools/mining_lasers.lua b/technic/tools/mining_lasers.lua index e06a00d..2a5a6b2 100644 --- a/technic/tools/mining_lasers.lua +++ b/technic/tools/mining_lasers.lua @@ -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'}, } }) |