Module:Category Arcaea:修订间差异

来自Arcaea中文维基
(创建页面,内容为“local getArgs = require('Module:Arguments').getArgs local p = {} function p.main(frame) local name = getArgs(frame).name if string.find(name, 'Songs') then return…”)
 
无编辑摘要
第3行: 第3行:


function p.main(frame)
function p.main(frame)
local name = getArgs(frame).name
local name = getArgs(frame)[1]
if string.find(name, 'Songs') then return '[[曲目封面图片]]' end
if string.find(name, 'Songs') then return '[[曲目封面图片]]' end
if string.find(name, 'Packs') then return '[[曲包封面图片]]' end
if string.find(name, 'Packs') then return '[[曲包封面图片]]' end

2021年6月25日 (五) 20:53的版本

可在Module:Category Arcaea/doc创建此模块的帮助文档

local getArgs = require('Module:Arguments').getArgs
local p = {}

function p.main(frame)
	local name = getArgs(frame)[1]
	if string.find(name, 'Songs') then return '[[曲目封面图片]]' end
	if string.find(name, 'Packs') then return '[[曲包封面图片]]' end
	if string.find(name, 'Partner') then return '[[搭档图片]]' end
	if string.find(name, 'icon') and string.find(name, 'Partner') then return '[[搭档图标图片]]' end
	if string.find(name, 'Background') then return '[[搭档图标图片]]' end
end

return p