reduced damage a bit for broadsword and also added crafting for it
This commit is contained in:
parent
53a970f874
commit
e109abbc0f
@ -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
|
-- Nodes/Items
|
||||||
|
|
||||||
minetest.register_craft(
|
minetest.register_craft(
|
||||||
|
@ -343,7 +343,7 @@ minetest.register_tool(
|
|||||||
wield_scale = {x = 2.0, y = 2.0, z = 1.0},
|
wield_scale = {x = 2.0, y = 2.0, z = 1.0},
|
||||||
tool_capabilities = {
|
tool_capabilities = {
|
||||||
full_punch_interval = 4.0,
|
full_punch_interval = 4.0,
|
||||||
damage_groups = {fleshy = 14}
|
damage_groups = {fleshy = 12}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user