2012-10-11 19:57:21 +04:00
|
|
|
flashlight_max_charge=30000
|
2012-10-11 19:49:45 +04:00
|
|
|
|
2012-10-11 19:57:21 +04:00
|
|
|
minetest.register_tool("technic:flashlight", {
|
|
|
|
description = "Flashlight",
|
|
|
|
inventory_image = "technic_flashlight.png",
|
2012-10-11 19:49:45 +04:00
|
|
|
on_use = function(itemstack, user, pointed_thing)
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2012-10-11 19:57:21 +04:00
|
|
|
output = "technic:flashlight",
|
2012-10-11 19:49:45 +04:00
|
|
|
recipe = {
|
|
|
|
{"glass","glass","glass"},
|
|
|
|
{"technic:stainless_steel_ingot","technic:battery","technic:stainless_steel_ingot"},
|
|
|
|
{"","technic:battery",""}
|
|
|
|
}
|
|
|
|
})
|