Mineclone dig times balanced (#84)

* mineclone dig times balanced

* fix pickaxey dupe
This commit is contained in:
Github is a non-free platform owned by Microsoft. Reasonable alternatives exist, such as Gitea, Sourcehut. We need a federated, mastodon-like forge based on ForgeFed. See: https://forgefed.org
2023-09-01 15:00:50 +02:00
committed by GitHub
parent 7f93e8aa0a
commit cb3e7757fc
11 changed files with 60 additions and 60 deletions

View File

@ -37,11 +37,11 @@ for index, connects in ipairs(cconnects) do
end
--]]
local pgroups = {snappy = 3, pipe = 1, not_in_creative_inventory = 1, dig_generic = 4, axey=5}
local pgroups = {snappy = 3, pipe = 1, not_in_creative_inventory = 1, dig_generic = 4, axey=1, handy=1, pickaxey=1}
local pipedesc = S("Pipe Segment").." "..dump(connects)
if #connects == 0 then
pgroups = {snappy = 3, tube = 1, dig_generic = 4, axey=5}
pgroups = {snappy = 3, tube = 1, dig_generic = 4, axey=1, handy=1, pickaxey=1}
pipedesc = S("Pipe Segment")
end
@ -76,7 +76,7 @@ for index, connects in ipairs(cconnects) do
fixed = outsel
},
groups = pgroups,
_mcl_hardness=1.6,
_mcl_hardness=0.8,
_sound_def = {
key = "node_sound_metal_defaults",
},
@ -94,7 +94,7 @@ for index, connects in ipairs(cconnects) do
pipenumber = index
})
local pgroups = {snappy = 3, pipe = 1, not_in_creative_inventory = 1, dig_generic = 4, axey=5}
local pgroups = {snappy = 3, pipe = 1, not_in_creative_inventory = 1, dig_generic = 4, axey=1, handy=1, pickaxey=1}
minetest.register_node("pipeworks:pipe_"..index.."_loaded", {
description = pipedesc,
@ -113,7 +113,7 @@ for index, connects in ipairs(cconnects) do
fixed = outsel
},
groups = pgroups,
_mcl_hardness = 1.6,
_mcl_hardness=0.8,
_sound_def = {
key = "node_sound_metal_defaults",
},