-

bugfix250729.1
全站通知:

模块:舰船数据

来自无尽的拉格朗日-星际猎人WIKI_BWIKI_哔哩哔哩
跳到导航 跳到搜索

此模块的文档可以在模块:舰船数据/doc创建

local ships = {}

function ships.get(shipname)
    local ok, data = pcall(require, "Module:舰船数据/" .. shipname)
    if ok then
        return data
    else
        return nil
    end
end

return ships