模块:Description
来自星露谷物语扩展百科
更多操作
Sizau-bot(留言 | 贡献)2025年12月19日 (五) 14:52的版本 (Sizau-bot移动页面模块:Expanded/Description至模块:Description,不留重定向:迁移)
local utils = require("Module:Utils")
local utils2 = require("Module:Expanded/Utils")
local items = require("Module:Items")
local expanded = utils.lazyload("Module:Expanded/Description/data/zh", true)
local expanded2 = utils.lazyload("Module:Expanded/Description/data/en", true)
local p = {}
function p.getDesc(input)
local text = utils.getArg(input)
if not text then
return ""
end
text = text:lower():gsub("_"," ")
return expanded[text] or expanded2[text] or items.getDescription(text)
end
return p