added missing def file

This commit is contained in:
Maciej Kasatkin 2012-10-11 17:49:45 +02:00
parent d5a7ade0d5
commit c5ff12e8cb
1 changed files with 17 additions and 0 deletions

17
torchlight.lua Normal file
View File

@ -0,0 +1,17 @@
torchlight_max_charge=30000
minetest.register_tool("technic:torchlight", {
description = "Torchlight",
inventory_image = "technic_torchlight.png",
on_use = function(itemstack, user, pointed_thing)
end,
})
minetest.register_craft({
output = "technic:torchlight",
recipe = {
{"glass","glass","glass"},
{"technic:stainless_steel_ingot","technic:battery","technic:stainless_steel_ingot"},
{"","technic:battery",""}
}
})