Module:EquipmentInfo

Revision as of 10:06, 3 April 2015 by com>Ckwng (Add subst-able entry point)

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

local EquipmentInfo = {}
local EquipmentInfoKai = require('Module:EquipmentInfoKai')
local getArgs = require('Module:GetArgs')

function EquipmentInfo.Infobox(frame)
	local args = getArgs{frame = frame:getParent()}
	return EquipmentInfoKai:Infobox(args["name"])
end

function EquipmentInfo._Infobox(frame)
	local args = getArgs{frame = frame}
	return EquipmentInfoKai:Infobox(args["name"])
end

return EquipmentInfo