Call of Duty Esports Wiki
Register
Advertisement

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

local util_vars = require("Module:VarsUtil")

local p = require('Module:EntityAbstract'):extends()
local h = {}

p.objectType = 'Game'
p.imageDisplayLength = 'long'
p.imagelength = 'unique'
p.defaultlength = 'long' -- this is what we store in cargo !!
-- p.cssClass = 'league-object'
p.imagesizes = {}
p.nosize = true

function p:init(str)
	self:super('init', str, 'Item')
	if self.unknown then
		self.vars = {
			long = str,
			short = str,
			image = 'Unknown Infobox Image - Tournament.png'
		}
	end
end

return p
Advertisement