mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-09 00:43:51 +01:00
added missing def file
This commit is contained in:
parent
d5a7ade0d5
commit
c5ff12e8cb
17
torchlight.lua
Normal file
17
torchlight.lua
Normal 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",""}
|
||||||
|
}
|
||||||
|
})
|
Loading…
Reference in New Issue
Block a user