View source for Module:Inventory slot/Aliases/Table
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local p = {}
p.table = function()
local slot = require( [[Module:Inventory slot]] )
local aliases = mw.loadData( [[Module:Inventory slot/Aliases]] )
local aliasNames = {}
local aI = 1
for name in pairs( aliases ) do
-- Skip the banner aliases (except "Any Banner"), as there are so
-- many of them it causes the table to be excessively long
if name == 'Any Banner' or not name:find( ' Banner$' ) and not name:find( '^Matching ' ) then
aliasNames[aI] = name
aI = aI + 1
end
end
table.sort( aliasNames )
local tableRows = {
' {| class="wikitable collapsible collapsed"',
'! Alias !! Output'
000
1:0
Template used on this page:
Return to Module:Inventory slot/Aliases/Table.