minetest.register_tool("gold_sword:sword_gold", { description = "Gold Sword", inventory_image = "gold_sword_tool_goldsword.png", tool_capabilities = { full_punch_interval = 0.9, max_drop_level=1, groupcaps={ snappy={times={[2]=1.40, [3]=0.30}, uses=30, maxlevel=1}, }, damage_groups = {fleshy=4}, }, sound = {breaks = "default_tool_breaks"}, }) minetest.register_craft({ output = 'gold_sword:sword_gold', recipe = { {'default:gold_ingot'}, {'default:gold_ingot'}, {'group:stick'}, } })