模块:ItemInfo:修订间差异
跳转到导航
跳转到搜索
完善模板
无编辑摘要 |
(完善模板) |
||
第135行: | 第135行: | ||
local type = tonumber(item.type) | local type = tonumber(item.type) | ||
-- 之后要替换为图片,提供更好的视觉效果 | -- 之后要替换为图片,提供更好的视觉效果 | ||
local icon = '<span style="background-color: ' .. p.gcType[type + 1] .. '; padding: . | local icon = '<span style="background-color: ' .. p.gcType[type + 1] .. '; padding: inherit .25em; color: white">' .. item.level .. '</span>' | ||
local section = '==' .. icon .. item.name .. '==\n' .. item.desc | local section = '==' .. icon .. item.name .. '==\n' .. item.desc | ||
local html = mw.html.create('table'):addClass('wikitable') | local html = mw.html.create('table'):addClass('wikitable') | ||
第147行: | 第147行: | ||
html:tag('tr') | html:tag('tr') | ||
:tag(' | :tag('td'):wikitext(item.quality):done() | ||
:tag(' | :tag('td'):wikitext(item.gd):done() | ||
:tag(' | :tag('td'):wikitext(string.sub(item.price, 0, -2)):done() | ||
:tag(' | :tag('td'):wikitext(item.rarity):done() | ||
:tag(' | :tag('td'):wikitext(item.eff_val):done() | ||
local list = checkAndMakeParamList(item) | local list = checkAndMakeParamList(item) |