mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-01-12 19:10:26 +01:00
Add recipe for "3d_armor:hardened_leather"
This commit is contained in:
parent
c3dd3012b3
commit
981abda865
@ -33,3 +33,13 @@ minetest.register_tool(":3d_armor:leggings_leather_hunter", {
|
|||||||
groups = {armor_feet = 5, armor_heal = 0, armor_use = 250},
|
groups = {armor_feet = 5, armor_heal = 0, armor_use = 250},
|
||||||
wear = 0,
|
wear = 0,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- Hardened Leather craft recipe
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "3d_armor:hardened_leather",
|
||||||
|
recipe = {
|
||||||
|
{"default:steel_ingot", "mobs:leather", "default:bronze_ingot" },
|
||||||
|
{"mobs:leather", "mobs:leather", "mobs:leather" },
|
||||||
|
{"default:bronze_ingot", "mobs:leather", "default:steel_ingot" },
|
||||||
|
}
|
||||||
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user