Actions

Module

Infobox GaldoriSpell

From ThornsWiki

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

local p = {}
 
function p.default(frame)
	local capiunto = require 'capiunto'
	return capiunto.create( {
		top = tostring(mw.title.getCurrentTitle()),
		topStyle = 'background:#5f5543;color:#FFF;font-family:Metamorphous, serif;line-height:1.25em;',
	} )

:addImage(
		string.format('[[File:%s|250px]]', frame.args["image"]), -- featured image
		frame.args["caption"] -- caption
	)
	:addHeader('Quick Facts')
	:addRow('Conversation', frame.args["conversation"])
	:addRow('Spell Branch', frame.args["branch"])
	:addRow('Chapter', frame.args["chapter"])
	:addRow('Spell Effects', frame.args["effects"])
	
end

return p