Compare commits
4 Commits
3427406776
...
df46aa36ee
Author | SHA1 | Date | |
---|---|---|---|
df46aa36ee | |||
28a7ff85c3 | |||
ad6972758f | |||
0641793db4 |
@ -1,6 +1,5 @@
|
||||
# List of textures that still have to be done
|
||||
- refined iron ingot for MCL
|
||||
- sticky resin
|
||||
- rubber wood (top|side)
|
||||
- rubber wood with rubber (side)
|
||||
- rubber leaves
|
||||
|
BIN
textures/industrialtest_drill.png
Normal file
BIN
textures/industrialtest_drill.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 414 B |
BIN
textures/industrialtest_drill_diamond.png
Normal file
BIN
textures/industrialtest_drill_diamond.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 302 B |
45
tools.lua
45
tools.lua
@ -1,5 +1,5 @@
|
||||
-- IndustrialTest
|
||||
-- Copyright (C) 2023 mrkubax10
|
||||
-- Copyright (C) 2023 mrkubax10 and Migdyn
|
||||
|
||||
-- This program is free software: you can redistribute it and/or modify
|
||||
-- it under the terms of the GNU General Public License as published by
|
||||
@ -43,6 +43,49 @@ local definition={
|
||||
end,
|
||||
_industrialtest_tool=true
|
||||
}
|
||||
|
||||
minetest.register_tool("industrialtest:drill",
|
||||
{
|
||||
description = S("Mining Drill"),
|
||||
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_diamond.png",
|
||||
tool_capabilities =
|
||||
{
|
||||
full_punch_interval = 1.5,
|
||||
max_drop_level = 1,
|
||||
groupcaps =
|
||||
{
|
||||
crumbly =
|
||||
{
|
||||
maxlevel = 3,
|
||||
uses = 8888,
|
||||
times = {[1]=0.1, [2]=0.1, [3]=0.1}
|
||||
},
|
||||
},
|
||||
damage_groups = {cracky=3,crubmly=3,fleshy=3},
|
||||
},
|
||||
})
|
||||
|
||||
if industrialtest.mtgAvailable then
|
||||
definition.groups={
|
||||
flammable=2
|
||||
|
Loading…
x
Reference in New Issue
Block a user