Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Infobox card: Difference between revisions

From Sekaipedia
Content added Content deleted
m (no text next to rarity)
mNo edit summary
 
(44 intermediate revisions by 2 users not shown)
Line 1: Line 1:
--------------------------
--------------------------
-- Module for [[Template:Infobox Card]]
-- Module for [[Template:Infobox card]]
------------------------
------------------------
local getArgs = require('Module:Arguments').getArgs
local getArgs = require('Module:Arguments').getArgs
local builder = require('Module:InfoboxBuilder')
local QueryBuilder = require('Module:QueryBuilder')
local constants = require('Module:Constants')
local InfoboxBuilder = require('Module:InfoboxBuilder')
local utils = require('Module:Utilities')
local DisplayFns = require('Module:DisplayFunctions')
local icons = require('Module:Icons')._main
local ProcessingFns = require('Module:ProcessingFunctions')
local aicon = require('Module:Attribute icon')._main

local cicon = require('Module:Character icon')._main
local ricon = require('Module:Rarity icon')._main
local uicon = require('Module:Unit icon')._main
local VariablesLua = mw.ext.VariablesLua


local p = {}
local p = {}
local categories = ""

local function formatImage(image_name)
return string.format("[[File:%s|156px]]", image_name)
end


local function formatAttribute(attribute)
local function formatAttribute(attribute)
if attribute and attribute ~= '' then
if attribute and attribute ~= '' then
return string.format(
return string.format(
"%s %s",
"%s [[%s]]",
icons({ attribute, size = '20px' }),
aicon({ attribute, size = '20px' }) or '',
utils.capitalize(attribute)
attribute
)
)
end
end
Line 30: Line 29:
local function formatCharacter(character)
local function formatCharacter(character)
if character and charater ~= '' then
if character and charater ~= '' then
return string.format(
local icon = icons({ character, size = '20px' })
"%s [[%s]]",
if icon then
cicon({ character, size = '20px' }) or '',
return string.format(
character
"%s [[%s]]",
icon,
)
character
)
end
return '[[' .. character .. ']]'
end
end
return nil
end
end


local function formatRarity(rarity)
local function formatRarity(rarity)
if rarity and rarity ~= '' then
if rarity and rarity ~= '' then
if tonumber(rarity) and
return ricon({ rarity, '20px' })
tonumber(rarity) >= 1 and
tonumber(rarity) <= 4 then
return icons({ rarity .. " star", size = '20px' })
elseif rarity == 'birthday' then
return icons({ rarity, size = '20px' }) .. ' Birthday'
end
end
end


Line 61: Line 51:
return string.format(
return string.format(
"%s [[%s]]",
"%s [[%s]]",
icons({ unit, size = '20px' }),
uicon({ unit, size = '20px' }) or '',
constants.get_unit(unit)
unit
)
)
end
end
return nil
return nil
end
end


local function formatBreakCommas(val)
local function formatEventId(id)
local qb = QueryBuilder.new()
if val then
qb
local split_val = mw.text.split(val, ',')
:setTables('events')
for i,v in ipairs(split_val) do
:setFields([[
split_val[i] = mw.text.trim(v)
_pageName,
end
event_name,
]])
:setGroupBy('_pageName')
:setLimit(1)
:addWhere('event_id', '=', id)
local result = qb:query()[1]
return table.concat(split_val, "<br>")
if result then
return string.format('[[%s|%s]]', result._pageName, result.event_name)
end
end
return nil
return nil

end
end


local function formatToLink(val)
local function formatGachaId(id)
local qb = QueryBuilder.new()
if val and val ~= '' then
qb
return '[[' .. val .. ']]'
:setTables('gachas')
:setFields([[
_pageName,
gacha_name,
]])
:setGroupBy('_pageName')
:setLimit(1)
:addWhere('gacha_id', '=', id)
local result = qb:query()[1]
if result then
return string.format('[[%s|%s]]', result._pageName, result.gacha_name)
end
end
Line 93: Line 103:


function p.main(frame)
function p.main(frame)
local args = getArgs(frame)
local args = getArgs(frame, { wrappers = 'Template:Infobox card' })
local infobox = builder.new()
local infobox = InfoboxBuilder.new()
infobox:setName('Infobox Card')
infobox:setName('Infobox card')
:setWidth("330px")
:setParams{
:setParams{
{ name = 'card id' },
{ name = 'card id' },
{ name = 'card name', default = mw.title.getCurrentTitle().text },
{ name = 'card name', default = mw.title.getCurrentTitle().text },
{ name = 'thumbnail', func = formatImage },
{ name = 'thumbnail' },
{ name = 'thumbnail trained', func = formatImage },
{ name = 'thumbnail trained' },
{ name = 'japanese' },
{ name = 'japanese' },
{ name = 'romaji' },
{ name = 'romaji' },
{ name = 'character', func = formatCharacter },
{ name = 'character' },
{ name = 'attribute', func = formatAttribute },
{ name = 'attribute' },
{ name = 'rarity', func = formatRarity },
{ name = 'rarity' },
{ name = 'unit', func = formatUnit },
{ name = 'unit' },
{ name = 'support unit' , func = formatUnit},
{ name = 'support unit' },
{ name = 'status' },
{ name = 'status' },
{ name = 'date' },
{ name = 'date' },
{ name = 'obtain', func = formatBreakCommas },
{ name = 'acquire', fn = ProcessingFns.stringToArray(',') },
{ name = 'event', func = formatToLink },
{ name = 'event id', dFunc = formatEventId },
{ name = 'banner', func = formatToLink }
{ name = 'gacha id', dFunc = formatGachaId },
-- Compatability args
{ name = 'obtain', fn = ProcessingFns.stringToArray(',') },
{ name = 'event' },
{ name = 'banner' },
{ name = 'gacha' },
}
}
:setArgs(args)
:setArgs(args)
:processArgs()
:setHeaderColorsByParam('attribute', constants.get_attribute_colors)
:setCategoryMap({
['character'] = {
-- VIRTUAL SINGER
['Hatsune Miku'] = 'Hatsune Miku cards',
['Kagamine Rin'] = 'Kagamine Rin cards',
['Kagamine Len'] = 'Kagamine Len cards',
['Megurine Luka'] = 'Megurine Luka cards',
['MEIKO'] = 'MEIKO cards',
['KAITO'] = 'KAITO cards',
-- Leo/need
['Hoshino Ichika'] = 'Hoshino Ichika cards',
['Tenma Saki'] = 'Tenma Saki cards',
['Mochizuki Honami'] = 'Mochizuki Honami cards',
['Hinomori Shiho'] = 'Hinomori Shiho cards',

-- MORE MORE JUMP!
['Hanasato Minori'] = 'Hanasato Minori cards',
['Kiritani Haruka'] = 'Kiritani Haruka cards',
['Momoi Airi'] = 'Momoi Airi cards',
['Hinomori Shizuku'] = 'Hinomori Shizuku cards',
-- Vivid BAD SQUAD
['Azusawa Kohane'] = 'Azusawa Kohane cards',
['Shiraishi An'] = 'Shiraishi An cards',
['Shinonome Akito'] = 'Shinonome Akito cards',
['Aoyagi Toya'] = 'Aoyagi Toya cards',
-- Wonderlands×Showtime
['Tenma Tsukasa'] = 'Tenma Tsukasa cards',
['Otori Emu'] = 'Otori Emu cards',
['Kusanagi Nene'] = 'Kusanagi Nene cards',
['Kamishiro Rui'] = 'Kamishiro Rui cards',
-- 25-ji, Night Code de.
['Yoisaki Kanade'] = 'Yoisaki Kanade cards',
['Asahina Mafuyu'] = 'Asahina Mafuyu cards',
['Shinonome Ena'] = 'Shinonome Ena cards',
['Akiyama Mizuki'] = 'Akiyama Mizuki cards',
},
['attribute'] = {
['Cool'] = 'Cool cards',
['Cute'] = 'Cute cards',
['Happy'] = 'Happy cards',
['Mysterious'] = 'Mysterious cards',
['Pure'] = 'Pure cards',
},
['rarity'] = {
['1'] = '1☆ cards',
['2'] = '2☆ cards',
['3'] = '3☆ cards',
['4'] = '4☆ cards',
['Birthday'] = 'Birthday cards',
},
['status'] = {
['Permanent'] = 'Permanent cards',
['Limited'] = 'Limited cards',
['Colorful Festival limited'] = 'Colorful Festival limited cards',
['Birthday limited'] = 'Birthday limited cards',
}
})


infobox
infobox
:addHeader({ tag = 'argth', content = 'card name' })
:addHeader({ tag = 'argth', content = 'card name' })
:addImage(
:addImage({
{
{
{ tag = 'argtd', content = 'thumbnail', title = 'Untrained' },
tag = 'argtd',
{ tag = 'argtd', content = 'thumbnail trained', title = 'Trained' }
content = 'thumbnail',
tabName = 'Untrained',
fn = DisplayFns.image('156px')
},
{
tag = 'argtd',
content = 'thumbnail trained',
tabName = 'Trained',
fn = DisplayFns.image('156px')
}
}
)
})
:addRow(
:addRow(
{
{
{ tag = 'th', content = 'Japanese', colspan = 12 },
{ tag = 'th', content = 'Japanese' },
{ tag = 'argtd', content = 'japanese', colspan = 18 }
{ tag = 'argtd', content = 'japanese' }
},
},
{ hideIfEmpty = { 'japanese' } }
{ hideIfEmpty = { 'japanese' } }
Line 136: Line 219:
:addRow(
:addRow(
{
{
{ tag = 'th', content = 'Romaji', colspan = 12 },
{ tag = 'th', content = 'Romaji' },
{ tag = 'argtd', content = 'romaji', colspan = 18 }
{ tag = 'argtd', content = 'romaji' }
},
},
{ hideIfEmpty = { 'romaji' } }
{ hideIfEmpty = { 'romaji' } }
Line 143: Line 226:
:addHeader({ tag = 'th', content = 'Card Information' }, { subheader = true })
:addHeader({ tag = 'th', content = 'Card Information' }, { subheader = true })
:addRow({
:addRow({
{ tag = 'th', content = 'Character', colspan = 12 },
{ tag = 'th', content = 'Card ID' },
{ tag = 'argtd', content = 'character', colspan = 18 }
{ tag = 'argtd', content = 'card id' }
})
})
:addRow({
:addRow({
{ tag = 'th', content = 'Attribute', colspan = 12 },
{ tag = 'th', content = 'Character' },
{ tag = 'argtd', content = 'attribute', colspan = 18 }
{ tag = 'argtd', content = 'character', fn = formatCharacter }
})
})
:addRow({
:addRow({
{ tag = 'th', content = 'Rarity', colspan = 12 },
{ tag = 'th', content = 'Attribute' },
{ tag = 'argtd', content = 'rarity', colspan = 18 }
{ tag = 'argtd', content = 'attribute', fn = formatAttribute }
})
})
:addRow({
:addRow({
{ tag = 'th', content = 'Unit', colspan = 12 },
{ tag = 'th', content = 'Rarity' },
{ tag = 'argtd', content = 'unit', colspan = 18 }
{ tag = 'argtd', content = 'rarity', fn = formatRarity }
})
:addRow({
{ tag = 'th', content = 'Unit' },
{ tag = 'argtd', content = 'unit', fn = formatUnit }
})
})
:addRow(
:addRow(
{
{
{ tag = 'th', content = 'Support Unit', colspan = 12 },
{ tag = 'th', content = 'Support unit' },
{ tag = 'argtd', content = 'support unit', colspan = 18 }
{ tag = 'argtd', content = 'support unit', fn = formatUnit }
},
},
{ hideIfEmpty = { 'support unit' } }
{ hideIfEmpty = { 'support unit' } }
)
)
:addHeader({ tag = 'th', content = 'Obtainment Information' }, { subheader = true })
:addHeader({ tag = 'th', content = 'Acquisition Information' }, { subheader = true })
:addRow({
:addRow({
{ tag = 'th', content = 'Status', colspan = 12 },
{ tag = 'th', content = 'Status' },
{ tag = 'argtd', content = 'status', colspan = 18 }
{ tag = 'argtd', content = 'status' }
})
})
:addRow({
:addRow({
{ tag = 'th', content = 'Release Date', colspan = 12 },
{ tag = 'th', content = 'Release date' },
{ tag = 'argtd', content = 'date', colspan = 18 }
{ tag = 'argtd', content = 'date' }
})
:addRow({
{ tag = 'th', content = 'Obtainment Method(s)', colspan = 12 },
{ tag = 'argtd', content = 'obtain', colspan = 18 }
})
})
:addRow(
:addRow(
{
{
{ tag = 'th', content = 'Associated Event', colspan = 12 },
{ tag = 'th', content = 'Acquisition method(s)' },
{ tag = 'argtd', content = 'event', colspan = 18 }
{ tag = 'argtd', content = 'obtain', fn = DisplayFns.list('unbulleted') }
},
{ hideIfEmpty = { 'obtain' } }
)
:addRow(
{
{
tag = 'argth',
content = 'acquire',
fn = DisplayFns.pluralHeader({ 'Acquisition method', 'Acquisition methods' })
},
{
tag = 'argtd',
content = 'acquire',
fn = DisplayFns.list('unbulleted')
}
},
{ hideIfEmpty = { 'acquire' } }
)
:addRow(
{
{ tag = 'th', content = 'Associated event' },
{ tag = 'argtd', content = 'event', fn = DisplayFns.link }
},
},
{ hideIfEmpty = { 'event' } }
{ hideIfEmpty = { 'event' } }
Line 187: Line 292:
:addRow(
:addRow(
{
{
{ tag = 'th', content = 'Debut Banner', colspan = 12 },
{ tag = 'th', content = 'Debut gacha' },
{ tag = 'argtd', content = 'banner', colspan = 18 }
{ tag = 'argtd', content = 'banner', fn = DisplayFns.link }
},
},
{ hideIfEmpty = { 'banner' } }
{ hideIfEmpty = { 'banner' } }
)
:addRow(
{
{ tag = 'th', content = 'Debut gacha' },
{ tag = 'argtd', content = 'gacha', fn = DisplayFns.link }
},
{ hideIfEmpty = { 'gacha' } }
)
)
local categories = ''
if mw.title.getCurrentTitle().namespace == 0 then
if mw.title.getCurrentTitle().namespace == 0 then
categories = "[[Category:Cards]]" .. categories
categories = '[[Category:Cards]]' .. infobox:getCategories()
local rawArgs = infobox:getArgs('raw')
local rawArgs = infobox:getRawArgs()
VariablesLua.vardefine( 'card id', rawArgs['card id'] )
if rawArgs['character'] then
VariablesLua.vardefine( 'rarity', rawArgs['rarity'] )
categories = categories .. string.format('[[Category:%s cards]]', rawArgs['character'])
VariablesLua.vardefine( 'character', rawArgs['character'] )
VariablesLua.vardefine( 'support unit', rawArgs['support unit'] )
end
VariablesLua.vardefine( 'attribute', rawArgs['attribute'] )
if rawArgs['attribute'] then
VariablesLua.vardefine( 'date', rawArgs['date'] )
VariablesLua.vardefine( 'event id', rawArgs['event id'] )
local attrs = {
['cool'] = '[[Category:Cool cards]]',
['cute'] = '[[Category:Cute cards]]',
['happy'] = '[[Category:Happy cards]]',
['mysterious'] = '[[Category:Mysterious cards]]',
['pure'] = '[[Category:Pure cards]]'
}
if attrs[rawArgs['attribute']] then
categories = categories .. attrs[rawArgs['attribute']]
end
end
if rawArgs['rarity'] then
local rarities = {
['1'] = '[[Category:1☆ cards]]',
['2'] = '[[Category:2☆ cards]]',
['3'] = '[[Category:3☆ cards]]',
['4'] = '[[Category:4☆ cards]]',
['birthday'] = '[[Category:Birthday cards]]'
}
if rarities[rawArgs['rarity']] then
categories = categories .. rarities[rawArgs['rarity']]
end
end

if rawArgs['status'] then
local statuses = {
['Permanent'] = '[[Category:Permanent cards]]',
['Limited'] = '[[Category:Limited cards]]',
['Colorful Festival Limited'] = '[[Category:Colorful Festival limited cards]]',
['Birthday Limited'] = '[[Category:Birthday limited cards]]',
}
if statuses[rawArgs['status']] then
categories = categories .. statuses[rawArgs['status']]
end
end


end
end



Latest revision as of 02:40, 29 April 2023

--------------------------
-- Module for [[Template:Infobox card]]
------------------------
local getArgs      = require('Module:Arguments').getArgs
local QueryBuilder = require('Module:QueryBuilder')
local InfoboxBuilder = require('Module:InfoboxBuilder')
local DisplayFns     = require('Module:DisplayFunctions')
local ProcessingFns  = require('Module:ProcessingFunctions')
local aicon = require('Module:Attribute icon')._main
local cicon = require('Module:Character icon')._main
local ricon = require('Module:Rarity icon')._main
local uicon = require('Module:Unit icon')._main
local VariablesLua = mw.ext.VariablesLua

local p = {}

local function formatAttribute(attribute)
	if attribute and attribute ~= '' then
		return string.format(
			"%s [[%s]]",
			aicon({ attribute, size = '20px' }) or '',
			attribute
		)
	end
	
	return nil
end

local function formatCharacter(character)
	if character and charater ~= '' then
		return string.format(
			"%s [[%s]]",
			cicon({ character, size = '20px' }) or '',
			character
		)
	end
	
	return nil
end

local function formatRarity(rarity)
	if rarity and rarity ~= '' then
		return ricon({ rarity, '20px' })
	end

	return nil
end

local function formatUnit(unit)
	if unit and unit ~= '' then
		return string.format(
			"%s [[%s]]",
			uicon({ unit, size = '20px' }) or '',
			unit
		)
	end
	
	return nil
end

local function formatEventId(id)
	local qb = QueryBuilder.new()
	qb
		:setTables('events')
		:setFields([[
			_pageName,
			event_name,
		]])
		:setGroupBy('_pageName')
        :setLimit(1)
		:addWhere('event_id', '=', id)
		
	local result = qb:query()[1]
	
	if result then
		return string.format('[[%s|%s]]', result._pageName, result.event_name)
	end
	
	return nil
end

local function formatGachaId(id)
	local qb = QueryBuilder.new()
	qb
		:setTables('gachas')
		:setFields([[
			_pageName,
			gacha_name,
		]])
		:setGroupBy('_pageName')
        :setLimit(1)
		:addWhere('gacha_id', '=', id)
		
	local result = qb:query()[1]
	
	if result then
		return string.format('[[%s|%s]]', result._pageName, result.gacha_name)
	end
	
	return nil
end


function p.main(frame)
	local args = getArgs(frame, { wrappers = 'Template:Infobox card' })
	local infobox = InfoboxBuilder.new()
	
	infobox:setName('Infobox card')
		:setParams{
			{ name = 'card id' },
			{ name = 'card name', default = mw.title.getCurrentTitle().text },
			{ name = 'thumbnail' },
			{ name = 'thumbnail trained' },
			{ name = 'japanese' },
			{ name = 'romaji' },
			{ name = 'character' },
			{ name = 'attribute' },
			{ name = 'rarity' },
			{ name = 'unit' },
			{ name = 'support unit' },
			{ name = 'status' },
			{ name = 'date' },
			{ name = 'acquire',	fn = ProcessingFns.stringToArray(',') },
			{ name = 'event id', dFunc = formatEventId },
			{ name = 'gacha id', dFunc = formatGachaId },
			-- Compatability args
			{ name = 'obtain', fn = ProcessingFns.stringToArray(',') },
			{ name = 'event' },
			{ name = 'banner' },
			{ name = 'gacha' },
		}
		:setArgs(args)
		:processArgs()
		:setCategoryMap({
			['character'] = {
				-- VIRTUAL SINGER
				['Hatsune Miku'] = 'Hatsune Miku cards',
				['Kagamine Rin'] = 'Kagamine Rin cards',
				['Kagamine Len'] = 'Kagamine Len cards',
				['Megurine Luka'] = 'Megurine Luka cards',
				['MEIKO'] = 'MEIKO cards',
				['KAITO'] = 'KAITO cards',
				
				-- Leo/need
				['Hoshino Ichika']   = 'Hoshino Ichika cards',
				['Tenma Saki']       = 'Tenma Saki cards',
				['Mochizuki Honami'] = 'Mochizuki Honami cards',
				['Hinomori Shiho']   = 'Hinomori Shiho cards',

				-- MORE MORE JUMP!
				['Hanasato Minori']  = 'Hanasato Minori cards',
				['Kiritani Haruka']  = 'Kiritani Haruka cards',
				['Momoi Airi']       = 'Momoi Airi cards',
				['Hinomori Shizuku'] = 'Hinomori Shizuku cards',
	
				-- Vivid BAD SQUAD
				['Azusawa Kohane']  = 'Azusawa Kohane cards',
				['Shiraishi An']    = 'Shiraishi An cards',
				['Shinonome Akito'] = 'Shinonome Akito cards',
				['Aoyagi Toya']     = 'Aoyagi Toya cards',
	
				-- Wonderlands×Showtime
				['Tenma Tsukasa'] = 'Tenma Tsukasa cards',
				['Otori Emu']     = 'Otori Emu cards',
				['Kusanagi Nene'] = 'Kusanagi Nene cards',
				['Kamishiro Rui'] = 'Kamishiro Rui cards',
	
				-- 25-ji, Night Code de.
				['Yoisaki Kanade'] = 'Yoisaki Kanade cards',
				['Asahina Mafuyu'] = 'Asahina Mafuyu cards',
				['Shinonome Ena']  = 'Shinonome Ena cards',
				['Akiyama Mizuki'] = 'Akiyama Mizuki cards',
			},
			['attribute'] = {
				['Cool']       = 'Cool cards',
				['Cute']       = 'Cute cards',
				['Happy']      = 'Happy cards',
				['Mysterious'] = 'Mysterious cards',
				['Pure']       = 'Pure cards',
			},
			['rarity'] = {
				['1'] = '1☆ cards',
				['2'] = '2☆ cards',
				['3'] = '3☆ cards',
				['4'] = '4☆ cards',
				['Birthday'] = 'Birthday cards',
			},
			['status'] = {
				['Permanent'] = 'Permanent cards',
				['Limited']   = 'Limited cards',
				['Colorful Festival limited'] = 'Colorful Festival limited cards',
				['Birthday limited'] = 'Birthday limited cards',
			}
		})

	infobox
		:addHeader({ tag = 'argth', content = 'card name' })
		:addImage({
			{ 
				tag = 'argtd', 
				content = 'thumbnail', 
				tabName = 'Untrained',
				fn = DisplayFns.image('156px')
			},
			{ 
				tag = 'argtd', 
				content = 'thumbnail trained', 
				tabName = 'Trained',
				fn = DisplayFns.image('156px')
			}
		})
		:addRow(
			{
				{ tag = 'th', content = 'Japanese' },
				{ tag = 'argtd', content = 'japanese' }
			},
			{ hideIfEmpty = { 'japanese' } }
		)
		:addRow(
			{
				{ tag = 'th', content = 'Romaji' },
				{ tag = 'argtd', content = 'romaji' }
			},
			{ hideIfEmpty = { 'romaji' } }
		)
		:addHeader({ tag = 'th', content = 'Card Information' }, { subheader = true })
		:addRow({
			{ tag = 'th', content = 'Card ID' },
			{ tag = 'argtd', content = 'card id' }
		})
		:addRow({
			{ tag = 'th', content = 'Character' },
			{ tag = 'argtd', content = 'character', fn = formatCharacter }
		})
		:addRow({
			{ tag = 'th', content = 'Attribute' },
			{ tag = 'argtd', content = 'attribute', fn = formatAttribute }
		})
		:addRow({
			{ tag = 'th', content = 'Rarity' },
			{ tag = 'argtd', content = 'rarity', fn = formatRarity }
		})
		:addRow({
			{ tag = 'th', content = 'Unit' },
			{ tag = 'argtd', content = 'unit', fn = formatUnit }
		})
		:addRow(
			{
				{ tag = 'th', content = 'Support unit' },
				{ tag = 'argtd', content = 'support unit', fn = formatUnit }
			},
			{ hideIfEmpty = { 'support unit' } }
		)
		:addHeader({ tag = 'th', content = 'Acquisition Information' }, { subheader = true })
		:addRow({
			{ tag = 'th', content = 'Status' },
			{ tag = 'argtd', content = 'status' }
		})
		:addRow({
			{ tag = 'th', content = 'Release date' },
			{ tag = 'argtd', content = 'date' }
		})
		:addRow(
			{
				{ tag = 'th', content = 'Acquisition method(s)' },
				{ tag = 'argtd', content = 'obtain', fn = DisplayFns.list('unbulleted') }
			},
			{ hideIfEmpty = { 'obtain' } }
		)
		:addRow(
			{
				{
					tag = 'argth', 
					content = 'acquire',
					fn = DisplayFns.pluralHeader({ 'Acquisition method', 'Acquisition methods' })
				},
				{
					tag = 'argtd', 
					content = 'acquire',
					fn = DisplayFns.list('unbulleted')
				}
			},
			{ hideIfEmpty = { 'acquire' } }
		)
		:addRow(
			{
				{ tag = 'th', content = 'Associated event' },
				{ tag = 'argtd', content = 'event', fn = DisplayFns.link }
			},
			{ hideIfEmpty = { 'event' } }
		)
		:addRow(
			{
				{ tag = 'th', content = 'Debut gacha' },
				{ tag = 'argtd', content = 'banner', fn = DisplayFns.link }
			},
			{ hideIfEmpty = { 'banner' } }
		)
		:addRow(
			{
				{ tag = 'th', content = 'Debut gacha' },
				{ tag = 'argtd', content = 'gacha', fn = DisplayFns.link }
			},
			{ hideIfEmpty = { 'gacha' } }
		)
	
	local categories = ''
	if mw.title.getCurrentTitle().namespace == 0 then
		categories = '[[Category:Cards]]' .. infobox:getCategories()
		
		local rawArgs = infobox:getRawArgs()
		VariablesLua.vardefine( 'card id', rawArgs['card id'] )
		VariablesLua.vardefine( 'rarity', rawArgs['rarity'] )
		VariablesLua.vardefine( 'character', rawArgs['character'] )
		VariablesLua.vardefine( 'support unit', rawArgs['support unit'] )
		VariablesLua.vardefine( 'attribute', rawArgs['attribute'] )
		VariablesLua.vardefine( 'date', rawArgs['date'] )
		VariablesLua.vardefine( 'event id', rawArgs['event id'] )
	end

	return infobox:tostring() .. categories
end

return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies.