Skip to content

Commit

Permalink
Make mese tools dig weak nodes faster than diamond tools
Browse files Browse the repository at this point in the history
This makes diamond tools a good choice for hard nodes, e.g. steel blocks, and mese tools a good choice for weak nodes, e.g. cobblestone
The mese and diamond shovels still have the same time on weak nodes.
  • Loading branch information
HybridDog committed Sep 18, 2017
1 parent 1756fbe commit d9dc2c8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions mods/default/tools.lua
Expand Up @@ -89,7 +89,7 @@ minetest.register_tool("default:pick_mese", {
full_punch_interval = 0.9,
max_drop_level=3,
groupcaps={
cracky = {times={[1]=2.4, [2]=1.2, [3]=0.60}, uses=20, maxlevel=3},
cracky = {times={[1]=2.4, [2]=1.2, [3]=0.5}, uses=20, maxlevel=3},
},
damage_groups = {fleshy=5},
},
Expand All @@ -104,7 +104,7 @@ minetest.register_tool("default:pick_diamond", {
full_punch_interval = 0.9,
max_drop_level=3,
groupcaps={
cracky = {times={[1]=2.0, [2]=1.0, [3]=0.50}, uses=30, maxlevel=3},
cracky = {times={[1]=2.0, [2]=1.0, [3]=0.6}, uses=30, maxlevel=3},
},
damage_groups = {fleshy=5},
},
Expand Down Expand Up @@ -285,7 +285,7 @@ minetest.register_tool("default:axe_mese", {
full_punch_interval = 0.9,
max_drop_level=1,
groupcaps={
choppy={times={[1]=2.20, [2]=1.00, [3]=0.60}, uses=20, maxlevel=3},
choppy={times={[1]=2.20, [2]=1.00, [3]=0.5}, uses=20, maxlevel=3},
},
damage_groups = {fleshy=6},
},
Expand All @@ -300,7 +300,7 @@ minetest.register_tool("default:axe_diamond", {
full_punch_interval = 0.9,
max_drop_level=1,
groupcaps={
choppy={times={[1]=2.10, [2]=0.90, [3]=0.50}, uses=30, maxlevel=3},
choppy={times={[1]=2.10, [2]=0.90, [3]=0.6}, uses=30, maxlevel=3},
},
damage_groups = {fleshy=7},
},
Expand Down Expand Up @@ -380,7 +380,7 @@ minetest.register_tool("default:sword_mese", {
full_punch_interval = 0.7,
max_drop_level=1,
groupcaps={
snappy={times={[1]=2.0, [2]=1.00, [3]=0.35}, uses=30, maxlevel=3},
snappy={times={[1]=2.0, [2]=1.00, [3]=0.3}, uses=30, maxlevel=3},
},
damage_groups = {fleshy=7},
},
Expand All @@ -395,7 +395,7 @@ minetest.register_tool("default:sword_diamond", {
full_punch_interval = 0.7,
max_drop_level=1,
groupcaps={
snappy={times={[1]=1.90, [2]=0.90, [3]=0.30}, uses=40, maxlevel=3},
snappy={times={[1]=1.90, [2]=0.90, [3]=0.35}, uses=40, maxlevel=3},
},
damage_groups = {fleshy=8},
},
Expand Down

0 comments on commit d9dc2c8

Please sign in to comment.