Translation: Add support for horse armor
This commit is contained in:
parent
cf9e440019
commit
8ee1521f14
3 changed files with 18 additions and 6 deletions
|
@ -278,8 +278,8 @@ local horse_armor_use = "Rightclick a horse to put on the horse armor. Donkeys a
|
|||
-- TODO: Balance the horse armor strength, compare with MC armor strength
|
||||
if c("iron_horse_armor") then
|
||||
minetest.register_craftitem("mobs_mc:iron_horse_armor", {
|
||||
description = "Iron Horse Armor",
|
||||
_doc_items_longdesc = "Iron horse armor can be worn by horses to increase their protection from harm a bit.",
|
||||
description = S("Iron Horse Armor"),
|
||||
_doc_items_longdesc = S("Iron horse armor can be worn by horses to increase their protection from harm a bit."),
|
||||
_doc_items_usagehelp = horse_armor_use,
|
||||
inventory_image = "mobs_mc_iron_horse_armor.png",
|
||||
_horse_overlay_image = "mobs_mc_horse_armor_iron.png",
|
||||
|
@ -289,8 +289,8 @@ if c("iron_horse_armor") then
|
|||
end
|
||||
if c("gold_horse_armor") then
|
||||
minetest.register_craftitem("mobs_mc:gold_horse_armor", {
|
||||
description = "Golden Horse Armor",
|
||||
_doc_items_longdesc = "Golden horse armor can be worn by horses to increase their protection from harm.",
|
||||
description = S("Golden Horse Armor"),
|
||||
_doc_items_longdesc = S("Golden horse armor can be worn by horses to increase their protection from harm."),
|
||||
_doc_items_usagehelp = horse_armor_use,
|
||||
inventory_image = "mobs_mc_gold_horse_armor.png",
|
||||
_horse_overlay_image = "mobs_mc_horse_armor_gold.png",
|
||||
|
@ -300,8 +300,8 @@ if c("gold_horse_armor") then
|
|||
end
|
||||
if c("diamond_horse_armor") then
|
||||
minetest.register_craftitem("mobs_mc:diamond_horse_armor", {
|
||||
description = "Diamond Horse Armor",
|
||||
_doc_items_longdesc = "Diamond horse armor can be worn by horses to greatly increase their protection from harm.",
|
||||
description = S("Diamond Horse Armor"),
|
||||
_doc_items_longdesc = S("Diamond horse armor can be worn by horses to greatly increase their protection from harm."),
|
||||
_doc_items_usagehelp = horse_armor_use,
|
||||
inventory_image = "mobs_mc_diamond_horse_armor.png",
|
||||
_horse_overlay_image = "mobs_mc_horse_armor_diamond.png",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue