打开主菜单
首页
随机
登录
设置
关于Arcaea中文维基
免责声明
搜索
查看“Module:AutoUpdate”的源代码
←
Module:AutoUpdate
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您必须确认您的电子邮件地址才能编辑页面。请通过
参数设置
设置并确认您的电子邮件地址。
您可以查看和复制此页面的源代码。
local getArgs = require('Module:Arguments').getArgs local data=require('模块:Data') local p = {} local function makeInvokeFunc(funcName) return function (frame) local args = getArgs(frame) return p[funcName](args) end end p.unlockA = makeInvokeFunc('_unlockA') function p._unlockA(args) local con=data.unlock(args[1]) local text={'','',''} local switch = { [0] = function(list) return list['credit']..' 残片<br>' end, [1] = function(list) local difficulty={ [0] = '[PST]', [1] = '[PRS]', [2] = '[FTR]' } local condition={ [0] = '', [1] = 'C或以上', [2] = 'B或以上', [3] = 'A或以上', [4] = 'AA或以上', [5] = 'EX或以上' } return '[['..data._song({ 'title' , list['song_id'] , ['type']='id' })..']]'..difficulty[list['song_difficulty']]..condition[list['grade']]..'通过<br>' end, [3] = function(list) local difficulty={ [0] = '[PST]', [1] = '[PRS]', [2] = '[FTR]' } return '游玩'..'[['..data._song({ 'title' , list['song_id'] , ['type']='id' })..']]'..difficulty[list['song_difficulty']]..'<br>' end, [4] = function(list) --没时间后面再做 return nil end } for i=1,3 do if con[i] then for o,n in ipairs(con[i]) do text[i]=text[i]..switch[n['type']](n) end end end local wikitable='{{解禁方法\n'..'|PST解禁方法='..text[1]..'\n|PRS解禁方法='..text[2]..'\n|FTR解禁方法='..text[2]..'\n}}' return wikitable end return p
本页使用的模板:
Module:AutoUpdate/doc
(
查看源代码
)
返回
Module:AutoUpdate
。