跳至內容

「Module:Arcaea Data」:修訂間差異

增加 36 位元組 、​ 2022年7月29日 (星期五)
無編輯摘要
無編輯摘要
無編輯摘要
第380行: 第380行:
p.Song_Query = makeInvokeFunc('_Song_Query')
p.Song_Query = makeInvokeFunc('_Song_Query')


function p._Song_Query(songIndexType, songIndex, attributeName, platform)
function p._Song_Query(args)
    -- 面向wikitext直接查询
    -- 面向wikitext直接查询
    return p.singleSongInformation(songIndex, songIndexType, platform)(attributeName)
    -- return p.singleSongInformation(songIndex, songIndexType, platform)(attributeName)
   return p.singleSongInformation(args[1], args[2], args[4])(args[3])
end
end


p.Pack_Query = makeInvokeFunc('_Pack_Query')
p.Pack_Query = makeInvokeFunc('_Pack_Query')


function p._Pack_Query(id)
function p._Pack_Query(args)
    -- 面向wikitext直接查询
    -- 面向wikitext直接查询
    return p.packName(id)
    return p.packName(args[1])
end
end


return p
return p