模块:EquipmentInfoList

来自70DNF
跳转到导航 跳转到搜索

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

local p = {}

function p.list(frame)
    res_table = {}
    table.insert(res_table, '123456' )
    return table.concat(res_table)
end

return p