舰R百科是靠无数志愿编辑者持续地建设更新完善的。编辑非常简单,无需代码知识,请勇于更新页面!
编辑入门 | 资助百科 | 留言讨论页 | 微博@舰R百科 | 百科编辑讨论Q群:366818861

模块:装备获得:修订间差异

来自舰R百科
跳转到导航 跳转到搜索
Hcmzn留言 | 贡献
修正改后不同名舰娘产生的Bug
Donnyjie留言 | 贡献
无编辑摘要
 
(未显示2个用户的5个中间版本)
第8行: 第8行:
local equiptName = frame.args[1]
local equiptName = frame.args[1]
local ret = ''
local ret = ''
for i = 1,1300 do
for i = 1,2000 do
local shipName = byIndex[i]
local shipName = byIndex[i]
if shipName ~= nil then
if shipName ~= nil then
第14行: 第14行:
for k = 1, 4 do
for k = 1, 4 do
if eq[k] == equiptName then
if eq[k] == equiptName then
if eq[k] == eq[k-1] or eq[k] == eq[k-2] or eq[k] == eq[k-3] then
break
end
if 1000 < ships[shipName].index and ships[shipName].index < 2000 then
if 1000 < ships[shipName].index and ships[shipName].index < 2000 then
if string.sub(shipName, 1, -6) == byIndex[i - 1000] then
local shipBaseName = byIndex[i - 1000]
ret = ret .. '[[战舰少女:' .. string.sub(shipName, 1, -6) .. '|' .. shipName .. ']]、'
ret = ret .. '[[' .. shipBaseName .. '|' .. shipName .. ']]、'
else
ret = ret .. '[[战舰少女:' .. byIndex[i - 1000] .. '|' .. shipName .. ']]、'
end
else
else
ret = ret .. '[[' .. shipName .. ']]、'
ret = ret .. '[[' .. shipName .. ']]、'

2025年3月28日 (五) 00:38的最新版本

此模块的文档可以在模块:装备获得/doc创建

local data = mw.loadData("模块:特殊数据/舰娘")
local ships = data.ships
local byIndex = data.byIndex

local p = { }

p['自带'] = function(frame)
	local equiptName = frame.args[1]
	local ret = ''
	for i = 1,2000 do
		local shipName = byIndex[i]
		if shipName ~= nil then
			local eq = {ships[shipName].eq1, ships[shipName].eq2, ships[shipName].eq3, ships[shipName].eq4}
			for k = 1, 4 do
				if eq[k] == equiptName then
					if eq[k] == eq[k-1] or eq[k] == eq[k-2] or eq[k] == eq[k-3] then
						break
					end
					if 1000 < ships[shipName].index and ships[shipName].index < 2000 then
						local shipBaseName = byIndex[i - 1000]
						ret = ret .. '[[' .. shipBaseName .. '|' .. shipName .. ']]、'
					else
						ret = ret .. '[[' .. shipName .. ']]、'
					end
				end
			end
		end
	end
	ret = string.sub(ret, 1, -4)
	if ret == '' then
		ret = ''
	else
		ret = ret .. '自带'
	end
	return ret
end

return p