Module:Character Infobox

From NOISZ Wiki
Revision as of 12:53, 3 June 2025 by RiceEmpress (talk | contribs)

Documentation for this module may be created at Module:Character Infobox/doc

if args.eye_colour or args.hair_colour or args.height then
		infobox:addHeader( 'Physical' )
		for _, row in ipairs(physical) do
			local label, value = row[1], row[2]
			if value then
           		infobox:addRow(label, value)
			end
		end
	end