Leaguepedia | League of Legends Esports Wiki
Advertisement

Edit the documentation or categories for this module.

If you are an editor wanting to update the list of champions, see {{Championnames}}m


local p = require('Module:EntityAbstract'):finalExtends()

p.objectType = 'Champion'
p.cssClass = 'champion-object'
p.defaultlength = 'display'
p.imagelength = 'link'
p.filePattern = '%sSquare.png'
p.imagesizes = { default = 25, display = 25, inline = 20, }

function p:init(str)
	self:super('init', str)
	if self.unknown then
		error('Unrecognized champion name')
	end
end

function p:name(opts)
	if not opts then opts = {} end
	return opts.display or self:get(opts.len or self.defaultlength)
end

return p
Advertisement