contributors, delete_pages, Interface administrators
4,701
edits
FaeriMagic (talk | contribs) mNo edit summary |
FaeriMagic (talk | contribs) mNo edit summary |
||
(3 intermediate revisions by the same user not shown) | |||
Line 12: | Line 12: | ||
local parts = mw.text.split(mw.text.trim(line), ",") | local parts = mw.text.split(mw.text.trim(line), ",") | ||
local level = parts[1] or "" | local level = parts[1] or "" | ||
local | local skillMax = parts[2] or "" | ||
local apt = parts[3] or "" | local apt = parts[3] or "" | ||
table.insert(rows, string.format( | table.insert(rows, string.format( | ||
'|-\n| style="text-align: center;" | %s || %s || %s', | '|-\n| style="text-align: center;" | %s || %s || %s', | ||
level, | level, skillMax, apt | ||
)) | )) | ||
end | end | ||
local header = string.format([=[ | local header = string.format([=[ | ||
{| class="wikitable" style="text-align: center; display: inline-block | {| class="wikitable" style="text-align: center; display: inline-block;" | ||
|- | |- | ||
| colspan="3" | [[File:%s|25px]] %s | | colspan="3" | [[File:%s|25px]] %s | ||
|- | |- | ||
! Lv. | ! Lv. | ||
! Level | ! <abbr title="Excludes manual skill improvements.">Skill Level/Max</abbr> | ||
! <abbr title="The Aptitude | ! <abbr title="The total Aptitude granted by this costume.">%s Aptitude</abbr> | ||
]=], img, skill, typeName) | ]=], img, skill, typeName) | ||