mirror of
https://github.com/minetest-mods/3d_armor.git
synced 2024-11-29 15:33:44 +01:00
Change gold damage.
Gold is equivalent as bronze now.
This commit is contained in:
parent
e4ab8c02ac
commit
0936d6f173
@ -35,7 +35,7 @@ minetest.register_tool("3d_armor:helmet_diamond", {
|
|||||||
minetest.register_tool("3d_armor:helmet_gold", {
|
minetest.register_tool("3d_armor:helmet_gold", {
|
||||||
description = "Gold Helmet",
|
description = "Gold Helmet",
|
||||||
inventory_image = "3d_armor_inv_helmet_gold.png",
|
inventory_image = "3d_armor_inv_helmet_gold.png",
|
||||||
groups = {armor_head=15, armor_heal=12, armor_use=100},
|
groups = {armor_head=10, armor_heal=6, armor_use=250},
|
||||||
wear = 0,
|
wear = 0,
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -81,7 +81,7 @@ minetest.register_tool("3d_armor:chestplate_diamond", {
|
|||||||
minetest.register_tool("3d_armor:chestplate_gold", {
|
minetest.register_tool("3d_armor:chestplate_gold", {
|
||||||
description = "Gold Chestplate",
|
description = "Gold Chestplate",
|
||||||
inventory_image = "3d_armor_inv_chestplate_gold.png",
|
inventory_image = "3d_armor_inv_chestplate_gold.png",
|
||||||
groups = {armor_torso=20, armor_heal=12, armor_use=100},
|
groups = {armor_torso=15, armor_heal=6, armor_use=250},
|
||||||
wear = 0,
|
wear = 0,
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -127,7 +127,7 @@ minetest.register_tool("3d_armor:leggings_diamond", {
|
|||||||
minetest.register_tool("3d_armor:leggings_gold", {
|
minetest.register_tool("3d_armor:leggings_gold", {
|
||||||
description = "Gold Leggings",
|
description = "Gold Leggings",
|
||||||
inventory_image = "3d_armor_inv_leggings_gold.png",
|
inventory_image = "3d_armor_inv_leggings_gold.png",
|
||||||
groups = {armor_legs=20, armor_heal=12, armor_use=100},
|
groups = {armor_legs=15, armor_heal=6, armor_use=250},
|
||||||
wear = 0,
|
wear = 0,
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -173,7 +173,7 @@ minetest.register_tool("3d_armor:boots_diamond", {
|
|||||||
minetest.register_tool("3d_armor:boots_gold", {
|
minetest.register_tool("3d_armor:boots_gold", {
|
||||||
description = "Gold Boots",
|
description = "Gold Boots",
|
||||||
inventory_image = "3d_armor_inv_boots_gold.png",
|
inventory_image = "3d_armor_inv_boots_gold.png",
|
||||||
groups = {armor_feet=15, armor_heal=12, armor_use=100},
|
groups = {armor_feet=10, armor_heal=6, armor_use=250},
|
||||||
wear = 0,
|
wear = 0,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user