minetest.register_tool("girlygirl:pick_diamond", { description = "Diamond Pickaxe", inventory_image = "girlygirl_diamondpick.png", tool_capabilities = { 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}, }, damage_groups = {fleshy=5}, }, }) minetest.register_tool("girlygirl:shovel_diamond", { description = "Diamond Shovel", inventory_image = "girlygirl_diamondshovel.png", wield_image = "girlygirl_tool_diamondshovel.png^[transformR90", tool_capabilities = { full_punch_interval = 1.0, max_drop_level=1, groupcaps={ crumbly = {times={[1]=1.10, [2]=0.50, [3]=0.30}, uses=30, maxlevel=3}, }, damage_groups = {fleshy=4}, }, }) minetest.register_tool("girlygirl:axe_diamond", { description = "Diamond Axe", inventory_image = "girlygirl_diamondaxe.png", tool_capabilities = { full_punch_interval = 0.9, max_drop_level=1, groupcaps={ choppy={times={[1]=2.10, [2]=0.90, [3]=0.50}, uses=30, maxlevel=2}, }, damage_groups = {fleshy=7}, }, }) minetest.register_tool("girlygirl:sword_diamond", { description = "Diamond Sword", inventory_image = "girlygirl_diamondsword.png", tool_capabilities = { 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}, }, damage_groups = {fleshy=8}, } })