Add the reinforced leather armor values

And remove now useless comments
This commit is contained in:
Ombridride 2015-05-26 19:13:23 +02:00
parent 811edbca93
commit ce1faef5da
1 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@
minetest.register_tool(":3d_armor:helmet_reinforced_leather_hunter", {
description = "Hunter's Reinforced Leather Helmet",
inventory_image = "3d_armor_inv_helmet_reinforced_leather_hunter.png",
groups = {armor_head = 10, armor_heal = 0, armor_use = 500}, -- Valeurs décidés, a mettre en fonction du spreadsheet
groups = {armor_head = 6, armor_heal = 0, armor_use = 40},
wear = 0,
})
@ -12,7 +12,7 @@ minetest.register_tool(":3d_armor:helmet_reinforced_leather_hunter", {
minetest.register_tool(":3d_armor:chestplate_reinforced_leather_hunter", {
description = "Hunter's Reinforced Leather Chestplate",
inventory_image = "3d_armor_inv_chestplate_reinforced_leather_hunter.png",
groups = {armor_torso = 15, armor_heal = 0, armor_use = 500}, -- Valeurs décidés, a mettre en fonction du spreadsheet
groups = {armor_torso = 10, armor_heal = 0, armor_use = 40},
wear = 0,
})
@ -21,7 +21,7 @@ minetest.register_tool(":3d_armor:chestplate_reinforced_leather_hunter", {
minetest.register_tool(":3d_armor:leggings_reinforced_leather_hunter", {
description = "Hunter's Reinforced Leather Leggings",
inventory_image = "3d_armor_inv_leggings_reinforced_leather_hunter.png",
groups = {armor_legs = 15, armor_heal = 0, armor_use = 500}, -- Valeurs décidés, a mettre en fonction du spreadsheet
groups = {armor_legs = 10, armor_heal = 0, armor_use = 40},
wear = 0,
})
@ -30,6 +30,6 @@ minetest.register_tool(":3d_armor:leggings_reinforced_leather_hunter", {
minetest.register_tool(":3d_armor:boots_reinforced_leather_hunter", {
description = "Hunter's Reinforced Leather Boots",
inventory_image = "3d_armor_inv_boots_reinforced_leather_hunter.png",
groups = {armor_feet = 10, armor_heal = 0, armor_use = 500}, -- Valeurs décidés, a mettre en fonction du spreadsheet
groups = {armor_feet = 6, armor_heal = 0, armor_use = 40},
wear = 0,
})