diff --git a/mods/lord/Tools/lottclothes/init.lua b/mods/lord/Tools/lottclothes/init.lua index e041d2f56..8f715e15f 100644 --- a/mods/lord/Tools/lottclothes/init.lua +++ b/mods/lord/Tools/lottclothes/init.lua @@ -18,3 +18,4 @@ dofile(minetest.get_modpath(minetest.get_current_modname()).."/ettenmoor.lua") dofile(minetest.get_modpath(minetest.get_current_modname()).."/cloaks.lua") dofile(minetest.get_modpath(minetest.get_current_modname()).."/elven.lua") dofile(minetest.get_modpath(minetest.get_current_modname()).."/wizard.lua") +dofile(minetest.get_modpath(minetest.get_current_modname()).."/unique.lua") diff --git a/mods/lord/Tools/lottclothes/locale/lottclothes.en.tr b/mods/lord/Tools/lottclothes/locale/lottclothes.en.tr index 930526abf..dd1490f6d 100644 --- a/mods/lord/Tools/lottclothes/locale/lottclothes.en.tr +++ b/mods/lord/Tools/lottclothes/locale/lottclothes.en.tr @@ -98,3 +98,7 @@ White Wizard Hood=White Wizard Hood White Wizard Robe=White Wizard Robe White Wizard Trousers=White Wizard Trousers White Wizard Cloak=White Wizard Cloak + +### unique.lua ### +Cloak "Guardian of Minas Tirith"=Cloak "Guardian of Minas Tirith" +unique collection=unique collection diff --git a/mods/lord/Tools/lottclothes/locale/lottclothes.ru.tr b/mods/lord/Tools/lottclothes/locale/lottclothes.ru.tr index 9a3051f3b..2a1ba2fed 100644 --- a/mods/lord/Tools/lottclothes/locale/lottclothes.ru.tr +++ b/mods/lord/Tools/lottclothes/locale/lottclothes.ru.tr @@ -98,3 +98,7 @@ White Wizard Hood=Капюшон белого мага White Wizard Robe=Мантия белого мага White Wizard Trousers=Штаны белого мага White Wizard Cloak=Плащ белого мага + +### unique.lua ### +Cloak "Guardian of Minas Tirith"=Плащ "Страж Минас Тирита" +unique collection=Уникальная коллекция diff --git a/mods/lord/Tools/lottclothes/locale/template.txt b/mods/lord/Tools/lottclothes/locale/template.txt index f9727a53e..651fddc83 100644 --- a/mods/lord/Tools/lottclothes/locale/template.txt +++ b/mods/lord/Tools/lottclothes/locale/template.txt @@ -98,3 +98,7 @@ White Wizard Hood= White Wizard Robe= White Wizard Trousers= White Wizard Cloak= + +### unique.lua ### +Cloak "Guardian of Minas Tirith"= +unique collection= diff --git a/mods/lord/Tools/lottclothes/textures/lord_uniq_clothes_mt_guardian_cloak.png b/mods/lord/Tools/lottclothes/textures/lord_uniq_clothes_mt_guardian_cloak.png new file mode 100644 index 000000000..d3e37088a Binary files /dev/null and b/mods/lord/Tools/lottclothes/textures/lord_uniq_clothes_mt_guardian_cloak.png differ diff --git a/mods/lord/Tools/lottclothes/textures/lord_uniq_clothes_mt_guardian_cloak_inv.png b/mods/lord/Tools/lottclothes/textures/lord_uniq_clothes_mt_guardian_cloak_inv.png new file mode 100644 index 000000000..64bac094f Binary files /dev/null and b/mods/lord/Tools/lottclothes/textures/lord_uniq_clothes_mt_guardian_cloak_inv.png differ diff --git a/mods/lord/Tools/lottclothes/unique.lua b/mods/lord/Tools/lottclothes/unique.lua new file mode 100644 index 000000000..74806755c --- /dev/null +++ b/mods/lord/Tools/lottclothes/unique.lua @@ -0,0 +1,10 @@ +local S = minetest.get_mod_translator() +local event_cloak_message = minetest.colorize('#FFAA00', S('Cloak "Guardian of Minas Tirith"')) +local seasonable_collection_message = S('unique collection') + +core.register_tool(':lord_uniq_clothes_mt_guardian_cloak', { + description = event_cloak_message .. '\n' .. seasonable_collection_message , + inventory_image = 'lord_uniq_clothes_mt_guardian_cloak_inv.png', + groups = { clothes = 1, no_preview = 1, clothes_cloak = 1 }, + wear = 0, +}) \ No newline at end of file