1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-12-25 02:00:37 +01:00

Sword unification for "nether" mod

netherrack + blue netherrack + Switonic
This commit is contained in:
Ombridride 2014-12-23 22:30:26 +01:00
parent bb3165a013
commit c81fc9903e

View File

@ -948,12 +948,12 @@ minetest.register_tool("nether:sword_netherrack", {
description = "Netherrack Sword", description = "Netherrack Sword",
inventory_image = "nether_sword_netherrack.png", inventory_image = "nether_sword_netherrack.png",
tool_capabilities = { tool_capabilities = {
full_punch_interval = 1, full_punch_interval = 1.0,
max_drop_level=0, max_drop_level=0,
groupcaps={ groupcaps={
snappy={times={[2]=1.3, [3]=0.38}, uses=40, maxlevel=1}, snappy={times={[2]=1.3, [3]=0.38}, uses=40, maxlevel=1},
}, },
damage_groups = {fleshy=5}, damage_groups = {fleshy=4},
}, },
}) })
@ -966,7 +966,7 @@ minetest.register_tool("nether:sword_netherrack_blue", {
groupcaps={ groupcaps={
snappy={times={[1]=2.5, [2]=1.1, [3]=0.33}, uses=40, maxlevel=2}, snappy={times={[1]=2.5, [2]=1.1, [3]=0.33}, uses=40, maxlevel=2},
}, },
damage_groups = {fleshy=7}, damage_groups = {fleshy=6},
}, },
}) })
@ -980,7 +980,7 @@ minetest.register_tool("nether:sword_white", {
groupcaps={ groupcaps={
snappy={times={[1]=1.7, [2]=0.8, [3]=0.2}, uses=100, maxlevel=3}, snappy={times={[1]=1.7, [2]=0.8, [3]=0.2}, uses=100, maxlevel=3},
}, },
damage_groups = {fleshy=11}, damage_groups = {fleshy=8},
}, },
}) })