mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-03 17:10:27 +01:00
22 lines
524 B
Lua
Executable File
22 lines
524 B
Lua
Executable File
|
|
minetest.register_tool("lavatemple:darkpick", {
|
|
description = "Dark Pickaxe",
|
|
inventory_image = "lavatemple_tool_darkpick.png",
|
|
tool_capabilities = {
|
|
full_punch_interval = 1.0,
|
|
max_drop_level=0,
|
|
groupcaps={
|
|
dark = {times={[1]=0.25}, uses=0, maxlevel=1},
|
|
},
|
|
damage_groups = {},
|
|
},
|
|
})
|
|
|
|
minetest.register_craftitem("lavatemple:teleport_orb", {
|
|
description = "Teleport'orb (does nothing yet)",
|
|
inventory_image = "lavatemple_teleport_orb.png",
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
end,
|
|
})
|
|
|