Improvements to drill
This commit is contained in:
parent
df46aa36ee
commit
a45d66210a
18
tools.lua
18
tools.lua
@ -48,6 +48,9 @@ minetest.register_tool("industrialtest:drill",
|
|||||||
{
|
{
|
||||||
description = S("Mining Drill"),
|
description = S("Mining Drill"),
|
||||||
inventory_image = "industrialtest_drill.png",
|
inventory_image = "industrialtest_drill.png",
|
||||||
|
_industrialtest_powerStorage=true,
|
||||||
|
_industrialtest_powerCapacity=30000,
|
||||||
|
_industrialtest_powerFlow=128,
|
||||||
tool_capabilities =
|
tool_capabilities =
|
||||||
{
|
{
|
||||||
full_punch_interval = 1.5,
|
full_punch_interval = 1.5,
|
||||||
@ -57,7 +60,11 @@ minetest.register_tool("industrialtest:drill",
|
|||||||
crumbly =
|
crumbly =
|
||||||
{
|
{
|
||||||
maxlevel = 3,
|
maxlevel = 3,
|
||||||
uses = 8888,
|
times = {[1]=0.3, [2]=0.3, [3]=0.3}
|
||||||
|
},
|
||||||
|
cracky =
|
||||||
|
{
|
||||||
|
maxlevel = 3,
|
||||||
times = {[1]=0.3, [2]=0.3, [3]=0.3}
|
times = {[1]=0.3, [2]=0.3, [3]=0.3}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -69,6 +76,9 @@ minetest.register_tool("industrialtest:drill_diamond",
|
|||||||
{
|
{
|
||||||
description = S("Diamond Drill"),
|
description = S("Diamond Drill"),
|
||||||
inventory_image = "industrialtest_drill_diamond.png",
|
inventory_image = "industrialtest_drill_diamond.png",
|
||||||
|
_industrialtest_powerStorage=true,
|
||||||
|
_industrialtest_powerCapacity=30000,
|
||||||
|
_industrialtest_powerFlow=128,
|
||||||
tool_capabilities =
|
tool_capabilities =
|
||||||
{
|
{
|
||||||
full_punch_interval = 1.5,
|
full_punch_interval = 1.5,
|
||||||
@ -78,7 +88,11 @@ minetest.register_tool("industrialtest:drill_diamond",
|
|||||||
crumbly =
|
crumbly =
|
||||||
{
|
{
|
||||||
maxlevel = 3,
|
maxlevel = 3,
|
||||||
uses = 8888,
|
times = {[1]=0.1, [2]=0.1, [3]=0.1}
|
||||||
|
},
|
||||||
|
cracky =
|
||||||
|
{
|
||||||
|
maxlevel = 3,
|
||||||
times = {[1]=0.1, [2]=0.1, [3]=0.1}
|
times = {[1]=0.1, [2]=0.1, [3]=0.1}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user