Module:Matchup

From Wavu Wiki, the 🌊 wavy Tekken wiki

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

local p = {};

p.main = function(frame)
	local p1 = frame.args[1]
	local p2 = frame.args[2]
	return p._main(p1, p2)
end

p.pageTitle = function(p1, p2)
	if p1 > p2 then
		p2, p1 = p1, p2
	end
	return p1 .. " vs " .. p2
end

p._main = function(p1, p2)
	local label = p2
	local class = p2:lower():gsub("%s+","-")
	return mw.getCurrentFrame():expandTemplate{
		title = "CharSelectChar",
		args = { label, class, p.pageTitle(p1, p2) }
	}
end

return p