查看“模块:ItemInfo”的源代码
←
模块:ItemInfo
跳转到导航
跳转到搜索
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
local p = {} function p.loadItemInfoByIndex(game, category, index) -- 获取索引(综合数据) local matIdx = mw.loadJsonData('数据:' .. game .. '/' .. category .. '/索引') local itemBase = matIdx[index] local status, data = pcall(mw.loadJsonData, '数据:' .. game .. '/' .. category .. '/' .. index) if status then return table.append(itemBase, data) else return itemBase end end -- 根据物品Id获取物品信息 function p.loadItemById(game, id) id = tonumber(id) if game == 'AT1' then -- id 区间检查 if id >= 225 and id <= 225 + 339 then -- 葛拉斯诺晶体 return p.loadItemInfoByIndex(game, '葛拉斯诺晶体', id - 225 + 1) end elseif game == 'AT2' then elseif game == 'AT3' then end return {name = "获取数据失败,检查ID值:" .. id} end local function recryFilter(recry) local game = 'AT1' if recry.s_prod == -1 then recry.s_prod = nil else recry.s_prod = p.loadItemById(game, recry.s_prod).name end if recry.a_prod == -1 then recry.a_prod = nil else recry.a_prod = p.loadItemById(game, recry.a_prod).name end if recry.b_prod == -1 then recry.b_prod = nil else recry.b_prod = p.loadItemById(game, recry.b_prod).name end if recry.c_prod == -1 then recry.c_prod = nil else recry.c_prod = p.loadItemById(game, recry.c_prod).name end end -- 生成材料物品基本信息的方法,使用模板“物品信息” function p.at1MaterialItemInfo(index) local item = p.loadItemInfoByIndex('AT1', '材料物品', index) local filteredRecrystalisation = recryFilter(item.recry) local arguments = { ["物品名"] = item.name, ["图像"] = item.img, ["原文"] = item.ori, ["类别"] = '材料', ["子类别"] = '采集', ["卖价"] = item.base.sell_price, ["游戏"] = AT1, -- 重结晶S=filteredRecrystalisation.s_prod, -- 重结晶A=filteredRecrystalisation.a_prod, -- 重结晶B=filteredRecrystalisation.b_prod, ["重结晶C"] = filteredRecrystalisation.c_prod, ["其他来源"] = item.alt_src, ["笔记"] = item.desc } if not item.src then for i = 1, 5 do if not item.src[i] then arguments['来源' .. i .. '/类别'] = item.src[i].type arguments['来源' .. i .. '/详细'] = item.src[i].desc end end end if not item.item_use_this then for i = 1, 8 do arguments['合成用途' .. i] = item.item_use_this[i] end end return mw.getCurrentFrame():expandTemplate { title = '物品信息', args = arguments } end function p.listMaterialsInAt1() result = {} for i = 1, 34 do table.insert(result, p.at1MaterialItemInfo(i)) end return table.concat(result, '\n') end return p
本页使用的模板:
模块:ItemInfo/doc
(
查看源代码
)
返回
模块:ItemInfo
。
导航菜单
个人工具
创建账号
登录
命名空间
模块
讨论
English
查看
阅读
查看源代码
查看历史
更多
搜索
导航
首页
最近更改
随机页面
MediaWiki帮助
工具
链入页面
相关更改
特殊页面
页面信息