Module:Sandbox/唯爱绫华/用户页Cq
跳到导航
跳到搜索
local p = {} local function notempty(s) return (s and s ~= "") end function p.main(frame) local items = { { "相比于练一个5星[[:Category:闪耀幻想曲:法师|法师]],我更愿意练6个4星法师。", "万类霜天对《[[闪耀幻想曲]]》的游戏理解之一" }, { "私は[[神田沙也加|あなた]]の歌声に癒やされている一人です。", "2021-12-18" }, { "如果神的意志是强迫他人背负与其意志相违的命运,那么哪怕神就站在我的面前,我也说这是不对的!", "《[[我被逐出队伍后过上慢生活]]》" }, { "[[Slow Loop|女孩的钓鱼慢活]][[彩绿#衍生梗:不含月铃姐妹|(不含𠘨)]]", "B站将“海凪”译为“海止”" } , { "就算看不见,也依然在那里啊!", "[[海凪小春]]" }, { "我一辈子治病救人,到头来却救不了自己!", "华佗" }, { "[[西片同学|西片]]喜欢的东西,我都想了解。", "[[高木同学]]" }, { "我都不知道,喜欢一个人,会这么难过。。。", "[[多田唯]]" }, { "嘘声是给挑战者的勋章", "[[美浦波旁]]" }, { "除非有奇迹发生,不然不行。。。那就让它发生吧!", "[[东海帝皇]]" }, { "曾经后悔的事,不让它再发生就行了吧。", "[[多田光良]]" }, { "最重要的不是能不能做到,而是想不想做到啊。", "[[高海千歌]]" }, { "这也太奇怪了,明明喜欢对方,却不希望让对方喜欢自己。", "[[小糸侑]]" } } math.randomseed(tostring(os.time())) local rand = math.random(#items) local r = "<table style=" .. '"display: table; border-collapse: collapse; margin: auto; background-color:transparent; ">' r = r .. "<tr>" r = r .. '<td style="vertical-align: top; color:#B2B7F2; font-size:36px; font-family:' .. "'Times New Roman'" .. ',serif; font-weight:bold; text-align:left; padding:10px 10px; line-height:100%">-{“}-</td>' r = r .. '<td style="text-align: left; padding: 1em; vertical-align: middle;"><big>' .. items[rand][1] .. '</big></td>' r = r .. '<td style="vertical-align: top; color:#B2B7F2; font-size:36px; font-family:' .. "'Times New Roman'" .. ',serif; font-weight:bold; text-align:left; padding:10px 10px; line-height:100%">-{”}-</td>' r = r .. '</tr>' if (notempty(items[rand][2])) then r = r .. '<tr><td colspan="3" style="font-size: smaller; text-align: right; padding-right: 4%;"><cite style="font-style:normal;">——' .. items[rand][2] .. '</cite>' r = r .. '</td></tr>' end return r .. "</table>" end return p