mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-04-01 10:10:36 +02:00
Finish the "reinforced_leather" armor
This commit is contained in:
parent
5cf2318a96
commit
2367a1b853
@ -1,38 +1,33 @@
|
|||||||
-- Register helmets:
|
if ARMOR_MATERIALS.reinforced_leather then
|
||||||
|
-- Register helmets :
|
||||||
minetest.register_tool(":3d_armor:helmet_reinforced_leather_hunter", {
|
minetest.register_tool(":3d_armor:helmet_reinforced_leather_hunter", {
|
||||||
description = "Hunter's Reinforced Leather Helmet",
|
description = "Hunter's Reinforced Leather Helmet",
|
||||||
inventory_image = "3d_armor_inv_helmet_reinforced_leather_hunter.png",
|
inventory_image = "3d_armor_inv_helmet_reinforced_leather_hunter.png",
|
||||||
groups = {armor_head = 6, armor_heal = 0, armor_use = 40},
|
groups = {armor_head = 6, armor_heal = 0, armor_use = 40},
|
||||||
wear = 0,
|
wear = 0,
|
||||||
})
|
})
|
||||||
|
-- Register chestplates :
|
||||||
-- Register chestplates:
|
minetest.register_tool(":3d_armor:chestplate_reinforced_leather_hunter", {
|
||||||
|
description = "Hunter's Reinforced Leather Chestplate",
|
||||||
minetest.register_tool(":3d_armor:chestplate_reinforced_leather_hunter", {
|
inventory_image = "3d_armor_inv_chestplate_reinforced_leather_hunter.png",
|
||||||
description = "Hunter's Reinforced Leather Chestplate",
|
groups = {armor_torso = 10, armor_heal = 0, armor_use = 40},
|
||||||
inventory_image = "3d_armor_inv_chestplate_reinforced_leather_hunter.png",
|
wear = 0,
|
||||||
groups = {armor_torso = 10, armor_heal = 0, armor_use = 40},
|
})
|
||||||
wear = 0,
|
-- Register leggings :
|
||||||
})
|
minetest.register_tool(":3d_armor:leggings_reinforced_leather_hunter", {
|
||||||
|
description = "Hunter's Reinforced Leather Leggings",
|
||||||
-- Register leggings:
|
inventory_image = "3d_armor_inv_leggings_reinforced_leather_hunter.png",
|
||||||
|
groups = {armor_legs = 10, armor_heal = 0, armor_use = 40},
|
||||||
minetest.register_tool(":3d_armor:leggings_reinforced_leather_hunter", {
|
wear = 0,
|
||||||
description = "Hunter's Reinforced Leather Leggings",
|
})
|
||||||
inventory_image = "3d_armor_inv_leggings_reinforced_leather_hunter.png",
|
-- Register boots :
|
||||||
groups = {armor_legs = 10, armor_heal = 0, armor_use = 40},
|
minetest.register_tool(":3d_armor:boots_reinforced_leather_hunter", {
|
||||||
wear = 0,
|
description = "Hunter's Reinforced Leather Boots",
|
||||||
})
|
inventory_image = "3d_armor_inv_boots_reinforced_leather_hunter.png",
|
||||||
|
groups = {armor_feet = 6, armor_heal = 0, armor_use = 40},
|
||||||
-- Register boots:
|
wear = 0,
|
||||||
|
})
|
||||||
minetest.register_tool(":3d_armor:boots_reinforced_leather_hunter", {
|
end
|
||||||
description = "Hunter's Reinforced Leather Boots",
|
|
||||||
inventory_image = "3d_armor_inv_boots_reinforced_leather_hunter.png",
|
|
||||||
groups = {armor_feet = 6, armor_heal = 0, armor_use = 40},
|
|
||||||
wear = 0,
|
|
||||||
})
|
|
||||||
|
|
||||||
-- Reinforced Leather craft recipe
|
-- Reinforced Leather craft recipe
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
|
Loading…
x
Reference in New Issue
Block a user