1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-06-29 23:26:04 +02:00

Add the Warrior class description to the shields wich need the warrior class

This commit is contained in:
Ombridride 2015-07-29 19:30:23 +02:00
parent 0e7c803463
commit e1b38bc261

View File

@ -93,7 +93,7 @@ end
if ARMOR_MATERIALS.mithril then
minetest.register_tool("shields:shield_mithril", {
description = "Mithril Shield",
description = "Mithril Shield (Warrior)",
inventory_image = "shields_inv_shield_mithril.png",
groups = {armor_shield=13, armor_heal=0, armor_use=50},
wear = 0,
@ -102,7 +102,7 @@ end
if ARMOR_MATERIALS.blackmithril then
minetest.register_tool("shields:shield_black_mithril_warrior", {
description = "Black Mithril Shield",
description = "Black Mithril Shield (Warrior)",
inventory_image = "shields_inv_shield_black_mithril_warrior.png",
groups = {armor_shield=15, armor_heal=0, armor_use=50},
wear = 0,
@ -132,5 +132,3 @@ end
minetest.after(0, function()
table.insert(armor.elements, "shield")
end)