1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-12-24 17:50:37 +01:00

Add the leather armor values

This commit is contained in:
Ombridride 2015-05-26 19:09:20 +02:00
parent 766b1a1029
commit b7502366fb

View File

@ -3,7 +3,7 @@
minetest.register_tool(":3d_armor:helmet_leather_hunter", {
description = "Hunter's Leather Helmet",
inventory_image = "3d_armor_inv_helmet_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 = 5, armor_heal = 0, armor_use = 250}, -- Valeurs décidés, a mettre en fonction du spreadsheet
wear = 0,
})
@ -12,7 +12,7 @@ minetest.register_tool(":3d_armor:helmet_leather_hunter", {
minetest.register_tool(":3d_armor:chestplate_leather_hunter", {
description = "Hunter's Leather Chestplate",
inventory_image = "3d_armor_inv_chestplate_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 = 9, armor_heal = 0, armor_use = 250}, -- Valeurs décidés, a mettre en fonction du spreadsheet
wear = 0,
})
@ -21,7 +21,7 @@ minetest.register_tool(":3d_armor:chestplate_leather_hunter", {
minetest.register_tool(":3d_armor:leggings_leather_hunter", {
description = "Hunter's Leather Leggings",
inventory_image = "3d_armor_inv_leggings_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 = 9, armor_heal = 0, armor_use = 250}, -- Valeurs décidés, a mettre en fonction du spreadsheet
wear = 0,
})
@ -30,6 +30,6 @@ minetest.register_tool(":3d_armor:leggings_leather_hunter", {
minetest.register_tool(":3d_armor:boots_leather_hunter", {
description = "Hunter's Leather Boots",
inventory_image = "3d_armor_inv_boots_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 = 5, armor_heal = 0, armor_use = 250}, -- Valeurs décidés, a mettre en fonction du spreadsheet
wear = 0,
})