reduced damage a bit for broadsword and also added crafting for it

This commit is contained in:
kaadmy 2015-10-19 11:50:42 -07:00
parent 53a970f874
commit e109abbc0f
2 changed files with 14 additions and 1 deletions

View File

@ -180,6 +180,19 @@ minetest.register_craft(
}
})
-- Broadsword
minetest.register_craft(
{
output = "default:broadsword",
recipe = {
{"", "", "default:ingot_steel"},
{"default:fiber", "default:ingot_steel", ""},
{"default:stick", "default:fiber", ""},
}
})
-- Nodes/Items
minetest.register_craft(

View File

@ -343,7 +343,7 @@ minetest.register_tool(
wield_scale = {x = 2.0, y = 2.0, z = 1.0},
tool_capabilities = {
full_punch_interval = 4.0,
damage_groups = {fleshy = 14}
damage_groups = {fleshy = 12}
}
})