模块:建造时间与特殊获得方式

Donnyjie留言 | 贡献2024年5月16日 (四) 18:48的版本 (已保护“模块:建造时间与特殊获得方式”([编辑=仅允许管理员](无限期)[移动=仅允许管理员](无限期)))
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

此模块的文档可以在模块:建造时间与特殊获得方式/doc创建

local data = mw.loadData("模块:数据库/建造时间与特殊获得方式")
local shipAccess = data.shipAccess

local p = { }

p['建造时间'] = function(frame)
	local shipIndex = frame.args[1]
	if shipAccess[shipIndex]['time'] ~= "0:00:00"
		then return shipAccess[shipIndex]['time']
		else return "不可建造"
	end
end

p['解锁日期'] = function(frame)
	local shipIndex = frame.args[1]
	if shipAccess[shipIndex]['unlockDate'] ~= nil
		then return ',' .. shipAccess[shipIndex]['unlockDate'] .. '解锁'
		else return ''
	end
end

p['特殊掉落'] = function(frame)
	local shipIndex = frame.args[1]
	if shipAccess[shipIndex]['spDrop'] ~= nil
		then return shipAccess[shipIndex]['spDrop']
		else return ''
	end
end

p['特殊方式'] = function(frame)
	local shipIndex = frame.args[1]
	if shipAccess[shipIndex]['spMethod'] ~= nil
		then return shipAccess[shipIndex]['spMethod']
		else return ''
	end
end

return p