Added the diamond drill
This commit is contained in:
parent
ad6972758f
commit
28a7ff85c3
21
tools.lua
21
tools.lua
@ -48,6 +48,27 @@ minetest.register_tool("industrialtest:drill",
|
|||||||
{
|
{
|
||||||
description = S("Mining Drill"),
|
description = S("Mining Drill"),
|
||||||
inventory_image = "industrialtest_drill.png",
|
inventory_image = "industrialtest_drill.png",
|
||||||
|
tool_capabilities =
|
||||||
|
{
|
||||||
|
full_punch_interval = 1.5,
|
||||||
|
max_drop_level = 1,
|
||||||
|
groupcaps =
|
||||||
|
{
|
||||||
|
crumbly =
|
||||||
|
{
|
||||||
|
maxlevel = 3,
|
||||||
|
uses = 8888,
|
||||||
|
times = {[1]=0.3, [2]=0.3, [3]=0.3}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
damage_groups = {cracky=3,crubmly=3,fleshy=3},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_tool("industrialtest:drill_diamond",
|
||||||
|
{
|
||||||
|
description = S("Diamond Drill"),
|
||||||
|
inventory_image = "industrialtest_drill_dia.png",
|
||||||
tool_capabilities =
|
tool_capabilities =
|
||||||
{
|
{
|
||||||
full_punch_interval = 1.5,
|
full_punch_interval = 1.5,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user