Compare commits
No commits in common. "df46aa36ee858ad821ab74cc2bcb62af7f79f92c" and "3427406776b3166d6712bfbb05429206d322329e" have entirely different histories.
df46aa36ee
...
3427406776
@ -1,5 +1,6 @@
|
|||||||
# List of textures that still have to be done
|
# List of textures that still have to be done
|
||||||
- refined iron ingot for MCL
|
- refined iron ingot for MCL
|
||||||
|
- sticky resin
|
||||||
- rubber wood (top|side)
|
- rubber wood (top|side)
|
||||||
- rubber wood with rubber (side)
|
- rubber wood with rubber (side)
|
||||||
- rubber leaves
|
- rubber leaves
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 414 B |
Binary file not shown.
Before Width: | Height: | Size: 302 B |
47
tools.lua
47
tools.lua
@ -1,5 +1,5 @@
|
|||||||
-- IndustrialTest
|
-- IndustrialTest
|
||||||
-- Copyright (C) 2023 mrkubax10 and Migdyn
|
-- Copyright (C) 2023 mrkubax10
|
||||||
|
|
||||||
-- This program is free software: you can redistribute it and/or modify
|
-- 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
|
-- it under the terms of the GNU General Public License as published by
|
||||||
@ -43,49 +43,6 @@ local definition={
|
|||||||
end,
|
end,
|
||||||
_industrialtest_tool=true
|
_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
|
if industrialtest.mtgAvailable then
|
||||||
definition.groups={
|
definition.groups={
|
||||||
flammable=2
|
flammable=2
|
||||||
@ -97,7 +54,7 @@ elseif industrialtest.mclAvailable then
|
|||||||
definition._repair_material="group:wood"
|
definition._repair_material="group:wood"
|
||||||
definition._mcl_toollike_wield=true
|
definition._mcl_toollike_wield=true
|
||||||
end
|
end
|
||||||
minetest.register_tool("industrialtest:treetap", definition)
|
minetest.register_tool("industrialtest:treetap",definition)
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type="shaped",
|
type="shaped",
|
||||||
output="industrialtest:treetap",
|
output="industrialtest:treetap",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user