Module:RandomPageEmbed

来自LabAnimalWiki
Changzai留言 | 贡献2025年6月29日 (日) 22:05的版本
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

local p = {}

local pages = {

  "IVC",
  "IACUC",
  "超数排卵",
  "螨虫"

}

function p.embed(frame)

   math.randomseed(os.time())
   local selected = pages[math.random(#pages)]
   return frame:expandTemplate{ title = selected }

end

return p