全站通知:

模块:Map

来自原神WIKI_BWIKI_哔哩哔哩
跳到导航 跳到搜索

此模块的文档可以在模块:Map/doc创建

local p = {}
function p.getMarkType(frame)
	local type = mw.text.jsonDecode(mw.title.new('Data:Map/type/json'):getContent())
	for i, v in ipairs(type) do
	    if v.markTypeName == frame.args[1] then
	    	return v.markType
	    end
	end
	return ""
end
return p