Revised recipe for mk1 laser and added mk2 & mk3 laser recipes.
This commit is contained in:
parent
252156d653
commit
49052d6f4a
@ -17,8 +17,24 @@ local S = technic.getter
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'technic:laser_mk1',
|
output = 'technic:laser_mk1',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'default:diamond', 'default:steel_ingot', 'technic:battery'},
|
{'default:diamond', 'default:steel_ingot', 'technic:red_energy_crystal'},
|
||||||
{'', 'default:steel_ingot', 'technic:battery'},
|
{'', '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'},
|
{'', '', 'default:copper_ingot'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user