Module:Matchup

From Wavu Wiki, the 🌊 wavy Tekken wiki
Revision as of 07:28, 19 January 2021 by RogerDodger (talk | contribs) (Created page with "local p = {}; p.main = function(frame) local p1 = frame[1] local p2 = frame[2] return p._main(p1, p2) end p._main = function(p1, p2) if p1 == p2 then return '' end loca...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

local p = {};

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

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

return p