Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions mods/lord/Tools/lottclothes/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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")
4 changes: 4 additions & 0 deletions mods/lord/Tools/lottclothes/locale/lottclothes.en.tr
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 4 additions & 0 deletions mods/lord/Tools/lottclothes/locale/lottclothes.ru.tr
Original file line number Diff line number Diff line change
Expand Up @@ -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=Уникальная коллекция
4 changes: 4 additions & 0 deletions mods/lord/Tools/lottclothes/locale/template.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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=
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions mods/lord/Tools/lottclothes/unique.lua
Original file line number Diff line number Diff line change
@@ -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,
})
Loading